Home
last modified time | relevance | path

Searched refs:isset (Results 51 – 75 of 264) sorted by relevance

1234567891011

/PHP-5.5/ext/phar/tests/cache_list/files/
H A Dwrite16.phar3 var_dump(isset($p["test.txt"]));
5 var_dump(isset($p["test.txt"]));
H A Dwrite15.phar.inc9 var_dump(isset($p["copied"]));
11 var_dump(isset($p["copied"]));
H A Dwrite25.phar.inc9 var_dump(isset($p["mounted"]));
11 var_dump(isset($p["mounted"]));
H A Dwrite24.phar.inc9 var_dump(isset($p["newname"]));
13 var_dump(isset($p["newname"]));
H A Dwrite16.phar.inc9 var_dump(isset($p["test.txt"]));
11 var_dump(isset($p["test.txt"]));
H A Dwrite2.phar8 var_dump(isset($phar["test"]));
9 var_dump(isset($phar2["test"]));
H A Dwrite2.phar.inc14 var_dump(isset($phar["test"]));
15 var_dump(isset($phar2["test"]));
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_get_charset.phpt53 $maxlen = (isset($tmp['Maxlen'])) ? $tmp['Maxlen'] : '';
54 $comment = (isset($tmp['Description'])) ? $tmp['Description'] : '';
73 if (!isset($charset->charset) ||
77 if (!isset($charset->collation) ||
82 if (!isset($charset->dir) ||
86 if (!isset($charset->min_length) ||
93 if (!isset($charset->number) ||
98 if (!isset($charset->state) ||
H A Dmysqli_pconnect.phpt30 } while (!isset($connections[$index]));
48 } while (!isset($connections[$index]) && $left > 0);
64 } while (!isset($connections[$index]));
/PHP-5.5/ext/simplexml/tests/
H A D021.phpt10 if(!isset($doc->exists)) {
13 if(isset($doc->doesnotexist)) {
/PHP-5.5/ext/phar/phar/
H A Dclicommand.inc34 } elseif (!isset($this->cmds[$argv[1]]['run'])) {
40 if (isset($this->cmds[$command]['arg'])) {
46 if (strlen($argv[$i]) == 2 && isset($this->args[$argv[$i][1]])) {
61 if (isset($this->args[''])) {
77 if (strlen($arg) && !isset($inf['val']) && isset($inf['required']) && $inf['required']) {
105 if (isset($this->typs[$typ]['typ'])) {
125 if (!isset($a[$what])) {
260 if (isset($conf['select']) && count($conf['select'])) {
290 if (isset($which)) {
325 if (isset($funcs['inf'])) {
[all …]
/PHP-5.5/Zend/tests/
H A Dbug38047.phpt24 if (isset($call["file"])) {
26 if (isset($call["line"])) {
30 if (isset($call["function"])) {
H A Dclosure_044.phpt8 $nonstaticUnscoped = function () { var_dump(isset(A::$priv)); var_dump(isset($this)); };
13 return function() { var_dump(isset(A::$priv)); var_dump(isset($this)); };
H A Dclosure_046.phpt10 $nonstaticUnscoped = function () { var_dump(isset(A::$priv)); var_dump(isset($this)); };
15 return function() { var_dump(isset(A::$priv)); var_dump(isset($this)); };
H A Dbug68652.phpt9 if (isset(self::$instance)) {
24 if (isset(self::$instance)) {
H A Ddereference_005.phpt21 return isset($this->container[$offset]);
27 return isset($this->container[$offset]) ? $this->container[$offset] : null;
H A Dbug60362.phpt7 if (isset($arr['exists']['non_existent'])) {
13 if (isset($arr['exists'][1])) {
21 if (isset($arr['exists']['non_existent']['sub_sub'])) {
27 if (isset($arr['exists'][1][0])) {
H A Dbug64417.phpt15 return isset($this->container[$offset]);
22 if (isset($this->container[$offset])) {
H A Dclosure_043.phpt9 $staticUnscoped = static function () { var_dump(isset(A::$priv)); var_dump(isset($this)); };
14 return static function() { var_dump(isset(A::$priv)); var_dump(isset($this)); };
/PHP-5.5/ext/phar/tests/
H A Dphar_oo_011.phpt20 var_dump(isset($phar['hi']));
21 var_dump(isset($phar['hi/f.php']));
H A Dphar_oo_012.phpt20 var_dump(isset($phar['f.php']));
24 var_dump(isset($phar['f.php']));
H A Dphar_oo_012_confirm.phpt20 var_dump(isset($phar['f.php']));
27 var_dump(isset($phar['f.php']));
H A Dphar_oo_012b.phpt22 var_dump(isset($phar['f.php']));
26 var_dump(isset($phar['f.php']));
/PHP-5.5/ext/spl/tests/
H A DarrayObject_magicMethods1.phpt52 echo "\n--> isset existent, non-existent and dynamic:\n";
53 var_dump(isset($ao['a']));
54 var_dump(isset($ao['nonexistent']));
55 var_dump(isset($ao['dynamic']));
138 --> isset existent, non-existent and dynamic:
H A DarrayObject_magicMethods2.phpt52 echo "\n--> isset existent, non-existent and dynamic:\n";
53 var_dump(isset($ao->a));
54 var_dump(isset($ao->nonexistent));
55 var_dump(isset($ao->dynamic));
138 --> isset existent, non-existent and dynamic:

Completed in 27 milliseconds

1234567891011