Answers for "find number of characters in word php"

PHP
1

get number of chars ina string php

$name = "Perú"; // With accent mark
echo strlen($name); // Display 5, because "ú" require 2 bytes.

$name = "Peru"; // Without accent mark
echo strlen($name); // Display 4
Posted by: Guest on May-13-2020
2

php string length

$str = 'abcdef';
echo strlen($str); // 6
Posted by: Guest on July-14-2020

Code answers related to "find number of characters in word php"

Browse Popular Code Answers by Language