Answers for "php count caracteres"

PHP
3

how to count string characters in php

<?php
$str1 = 'Hello world!';
echo strlen($str1); // Outputs: 12
Posted by: Guest on June-27-2021

Code answers related to "php count caracteres"

Browse Popular Code Answers by Language