Answers for "if string have character php"

PHP
2

javascript check if string ends with

function endsWith(str, suffix) {
    return str.indexOf(suffix, str.length - suffix.length) !== -1;
}

endsWith("hello young man","man");//true
endsWith("hello young man","boy");//false
Posted by: Guest on July-24-2019
3

php check if string or number

<?php if (is_numeric("cake")) { echo "Yes"; } else { echo "No"; } ?>
Posted by: Guest on February-08-2020

Code answers related to "if string have character php"

Browse Popular Code Answers by Language