Answers for "chaine de caractere php"

PHP
32

php nombre de caractère

<?php
$str = 'abcdef';
echo strlen($str); // 6

$str = ' ab cd ';
echo strlen($str); // 7
?>
Posted by: Guest on March-13-2020
1

sustituir caracteres especiales php

preg_replace('/[^a-zA-Z0-9_%[().]\/-]/s', '', $String);
Posted by: Guest on May-28-2021

Code answers related to "chaine de caractere php"

Browse Popular Code Answers by Language