Answers for "php string count occurrences of character"

PHP
5

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 string count occurrences of character"

Browse Popular Code Answers by Language