/PHP-5.4/ext/standard/tests/strings/ |
H A D | bug46578.phpt | 6 var_dump(strip_tags('<!-- testing I\'ve been to mars -->foobar')); 8 var_dump(strip_tags('<a alt="foobar">foo<!-- foo! --></a>bar')); 10 var_dump(strip_tags('<a alt="foobar"/>foo<?= foo! /* <!-- "cool" --> */ ?>bar')); 20 %string|unicode%(6) "foobar" 21 %string|unicode%(6) "foobar" 22 %string|unicode%(6) "foobar"
|
H A D | bug34214.phpt | 10 foobar foobar
|
/PHP-5.4/tests/basic/ |
H A D | rfc1867_boundary_1.phpt | 8 Content-Type: multipart/form-data; boundary="------------------------------------foobar" 9 --------------------------------------foobar 10 Content-Disposition: form-data; name="foobar" 13 --------------------------------------foobar-- 23 [%u|b%"foobar"]=>
|
/PHP-5.4/ext/pdo_sqlite/tests/ |
H A D | pdo_sqlite_createcollation.phpt | 11 $db->query('CREATE TABLE IF NOT EXISTS foobar (id INT AUTO INCREMENT, name TEXT)'); 13 $db->query('INSERT INTO foobar VALUES (NULL, "1")'); 14 $db->query('INSERT INTO foobar VALUES (NULL, "2")'); 15 $db->query('INSERT INTO foobar VALUES (NULL, "10")'); 19 $result = $db->query('SELECT name FROM foobar ORDER BY name COLLATE MYCOLLATE'); 24 $result = $db->query('SELECT name FROM foobar ORDER BY name'); 29 $db->query('DROP TABLE foobar');
|
H A D | pdo_sqlite_transaction.phpt | 12 $db->query('CREATE TABLE IF NOT EXISTS foobar (id INT AUTO INCREMENT, name TEXT)'); 16 $db->query('INSERT INTO foobar VALUES (NULL, "PHP")'); 17 $db->query('INSERT INTO foobar VALUES (NULL, "PHP6")'); 20 $r = $db->query('SELECT COUNT(*) FROM foobar'); 24 $db->query('DROP TABLE foobar');
|
H A D | pdo_sqlite_createaggregate.phpt | 10 $db->query('CREATE TABLE IF NOT EXISTS foobar (id INT AUTO INCREMENT, name TEXT)'); 12 $db->query('INSERT INTO foobar VALUES (NULL, "PHP")'); 13 $db->query('INSERT INTO foobar VALUES (NULL, "PHP6")'); 18 foreach ($db->query('SELECT testing(name) FROM foobar') as $row) { 22 $db->query('DROP TABLE foobar');
|
H A D | pdo_sqlite_createfunction.phpt | 10 $db->query('CREATE TABLE IF NOT EXISTS foobar (id INT AUTO INCREMENT, name TEXT)'); 12 $db->query('INSERT INTO foobar VALUES (NULL, "PHP")'); 13 $db->query('INSERT INTO foobar VALUES (NULL, "PHP6")'); 19 foreach ($db->query('SELECT testing(name) FROM foobar') as $row) { 23 $db->query('DROP TABLE foobar');
|
/PHP-5.4/Zend/tests/ |
H A D | call_user_func_001.phpt | 7 function foobar($str) { 22 call_user_func(__NAMESPACE__ .'\foobar', 'foobar'); 25 call_user_func(array(new $class, 'priv'), 'foobar'); 26 call_user_func(array(new $class, 'prot'), 'foobar'); 31 %string|unicode%(6) "foobar"
|
H A D | bug43175.phpt | 6 class foobar { 14 function foobar() { 15 return new foobar(); 18 foobar()->unknown();
|
H A D | indirect_method_call_001.phpt | 8 throw new Exception('foobar'); 15 var_dump($e->getMessage()); // foobar 20 string(6) "foobar"
|
H A D | constructor_args.phpt | 5 interface foobar { 8 abstract class bar implements foobar { 12 final class foo extends bar implements foobar {
|
H A D | bug43332_1.phpt | 5 namespace foobar; 15 Catchable fatal error: Argument 1 passed to foobar\foo::bar() must be an instance of foobar\foo, in…
|
H A D | gc_030.phpt | 11 throw new Exception("foobar"); 23 Fatal error: Uncaught exception 'Exception' with message 'foobar' in %sgc_030.php:%d 29 Next exception 'Exception' with message 'foobar' in %sgc_030.php:%d
|
H A D | bug46106.phpt | 7 function foobar($errno, $errstr, $errfile, $errline) { } 9 set_error_handler('foobar');
|
H A D | jump11.phpt | 5 class foobar { 21 new foobar;
|
H A D | class_alias_011.phpt | 11 print "foobar!\n"; 26 foobar!
|
/PHP-5.4/ext/spl/tests/ |
H A D | spl_007.phpt | 15 iterator_apply($it, array(new Foo, "foobar")); 21 Called foobar. 22 Called foobar. 23 Called foobar.
|
/PHP-5.4/ext/sqlite3/tests/ |
H A D | sqlite3stmt_paramCount_basic.phpt | 11 var_dump($db->exec('CREATE TABLE foobar (id INTEGER, name STRING, city STRING)')); 14 var_dump($db->exec("INSERT INTO foobar (id, name, city) VALUES (1, 'john', 'LA')")); 15 var_dump($db->exec("INSERT INTO foobar (id, name, city) VALUES (2, 'doe', 'SF')")); 19 "SELECT * FROM foobar WHERE id = ? ORDER BY id ASC", 20 "SELECT * FROM foobar WHERE id = 2 ORDER BY id ASC", 21 "SELECT * FROM foobar WHERE id = :id AND name = :name ORDER BY id ASC", 22 "SELECT * FROM foobar WHERE id = 1 AND name = :name ORDER BY id ASC",
|
H A D | sqlite3stmt_paramCount_error.phpt | 11 var_dump($db->exec('CREATE TABLE foobar (id INTEGER, name STRING, city STRING)')); 14 var_dump($db->exec("INSERT INTO foobar (id, name, city) VALUES (1, 'john', 'LA')")); 15 var_dump($db->exec("INSERT INTO foobar (id, name, city) VALUES (2, 'doe', 'SF')")); 18 $query = "SELECT * FROM foobar WHERE id = ? ORDER BY id ASC"; 25 var_dump($stmt->paramCount('foobar'));
|
/PHP-5.4/ext/pcre/tests/ |
H A D | bug52732.phpt | 7 $ret = preg_match('/(?:\D+|<\d+>)*[!?]/', 'foobar foobar foobar');
|
/PHP-5.4/ext/reflection/tests/ |
H A D | bug37964.phpt | 6 abstract class foobar { 10 class foo extends foobar { 18 private function foobar() { 42 Method [ <user> private method foobar ] {
|
/PHP-5.4/Zend/tests/traits/ |
H A D | interface_003.phpt | 8 return 'foobar'; 24 string(20) "C:3:"bar":6:{foobar}" 25 string(6) "foobar"
|
/PHP-5.4/ext/libxml/tests/ |
H A D | libxml_set_external_entity_loader_variation2.phpt | 7 @unlink(__DIR__ . "/foobar.dtd"); 12 <!DOCTYPE foo PUBLIC "-//FOO/BAR" "foobar.dtd"> 33 file_put_contents(__DIR__ . "/foobar.dtd", $dtd); 42 Warning: DOMDocument::validate(): Could not load the external subset "foobar.dtd" in %s on line %d
|
H A D | libxml_set_external_entity_loader_variation1.phpt | 9 <!DOCTYPE foo PUBLIC "-//FOO/BAR" "http://example.com/foobar"> 49 string(25) "http://example.com/foobar" 56 string(25) "http://example.com/foobar" 68 string(25) "http://example.com/foobar"
|
/PHP-5.4/ext/zip/tests/ |
H A D | oo_extract.phpt | 24 if (!is_dir($dirname .'__oo_extract_tmp/foobar')) { 25 echo "failed. mkdir foobar\n"; 28 if (!file_exists($dirname . '__oo_extract_tmp/foobar/baz')) { 29 echo "failed. extract foobar/baz\n"; 31 echo file_get_contents($dirname . '__oo_extract_tmp/foobar/baz') . "\n";
|