is_string

(PHP 4, PHP 5)

is_string — Find whether the type of a variable is string

Описание

bool is_string ( mixed $var )

Finds whether the type given variable is string.

Список параметров

var

The variable being evaluated.

Возвращаемые значения

Returns TRUE if var is of type string, FALSE otherwise.

Примеры

Пример #1 is_string() example

<?php
if (is_string("23")) {
 echo 
"is string\n";
} else {
 echo 
"is not an string\n";
}
var_dump(is_string('abc'));
var_dump(is_string("23"));
var_dump(is_string(23.5));
var_dump(is_string(true));
?>

Результат выполнения данного примера:

is string
bool(true)
bool(true)
bool(false)
bool(false)

Смотрите также

Коментарии

Using is_string() on an object will always return false (even with __toString()).

<?php
class {
  public function 
__toString() {
    return 
"Instances of B() can be treated as a strings!\n";
  }


$b = new B();
print(
$b); //Instances of B() can be treated as a strings!
print(is_string($b) ? 'true' 'false'); //false
?>
2014-02-27 23:22:19
http://php5.kiev.ua/manual/ru/function.is-string.html
Автор:
As noted earlier, is_string() returns false on an object that has a __toString() method. Here is a simple way to do a check that will work:

<?php
// determine if the passed argument can be treated like a string.
function is_stringy($text) {
    return (
is_string($text) || (is_object($text) && method_exists($text'__toString' ));
}
2017-09-14 01:47:00
http://php5.kiev.ua/manual/ru/function.is-string.html

    Поддержать сайт на родительском проекте КГБ