Home
last modified time | relevance | path

Searched refs:foobar (Results 1 – 25 of 132) sorted by relevance

123456

/PHP-5.5/ext/standard/tests/strings/
H A Dbug46578.phpt6 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 Dbug34214.phpt10 foobar foobar
/PHP-5.5/tests/basic/
H A Drfc1867_boundary_1.phpt8 Content-Type: multipart/form-data; boundary="------------------------------------foobar"
9 --------------------------------------foobar
10 Content-Disposition: form-data; name="foobar"
13 --------------------------------------foobar--
23 [%u|b%"foobar"]=>
/PHP-5.5/ext/pdo_sqlite/tests/
H A Dpdo_sqlite_createcollation.phpt11 $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 Dpdo_sqlite_transaction.phpt12 $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 Dpdo_sqlite_createaggregate.phpt10 $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 Dpdo_sqlite_createfunction.phpt10 $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.5/Zend/tests/
H A Dcall_user_func_001.phpt7 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 Dbug43175.phpt6 class foobar {
14 function foobar() {
15 return new foobar();
18 foobar()->unknown();
H A Dindirect_method_call_001.phpt8 throw new Exception('foobar');
15 var_dump($e->getMessage()); // foobar
20 string(6) "foobar"
H A Dconstructor_args.phpt5 interface foobar {
8 abstract class bar implements foobar {
12 final class foo extends bar implements foobar {
H A Dconst_dereference_002.phpt7 var_dump("foobar"[3]);
8 var_dump("foobar"[2][0]);
9 var_dump("foobar"["foo"]["bar"]);
H A Dbug18556.phpt17 $foobar = new infoBlob();
18 echo $foobar->foo;
20 $foobar = new InfoBlob();
21 echo $foobar->foo;
H A Dbug43332_1.phpt5 namespace foobar;
15 Catchable fatal error: Argument 1 passed to foobar\foo::bar() must be an instance of foobar\foo, in…
H A Dgc_030.phpt11 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 Dbug46106.phpt7 function foobar($errno, $errstr, $errfile, $errline) { }
9 set_error_handler('foobar');
/PHP-5.5/ext/spl/tests/
H A Dspl_007.phpt15 iterator_apply($it, array(new Foo, "foobar"));
21 Called foobar.
22 Called foobar.
23 Called foobar.
/PHP-5.5/ext/sqlite3/tests/
H A Dsqlite3stmt_paramCount_basic.phpt11 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 Dsqlite3stmt_paramCount_error.phpt11 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.5/ext/pcre/tests/
H A Dbug52732.phpt7 $ret = preg_match('/(?:\D+|<\d+>)*[!?]/', 'foobar foobar foobar');
/PHP-5.5/ext/reflection/tests/
H A Dbug37964.phpt6 abstract class foobar {
10 class foo extends foobar {
18 private function foobar() {
42 Method [ <user> private method foobar ] {
/PHP-5.5/Zend/tests/traits/
H A Dinterface_003.phpt8 return 'foobar';
24 string(20) "C:3:"bar":6:{foobar}"
25 string(6) "foobar"
/PHP-5.5/ext/libxml/tests/
H A Dlibxml_set_external_entity_loader_variation2.phpt7 @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 Dlibxml_set_external_entity_loader_variation1.phpt9 <!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.5/ext/zip/tests/
H A Doo_extract.phpt24 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";

Completed in 57 milliseconds

123456