検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 374 for Test (0.010 sec.)
操作モードを返す 5820
« RegexIterator::getFlags RegexIterator::getPregFlags » PHP Manual RegexIterator 操作モードを返す ... します。 例 例1 RegexIterator::getMode() の例 <?php $test = array ( 'str1' => 'test 1' , 'teststr2' => 'anot ... her test' , 'str3' => 'test 123' ); $arrayIterator = new Ar ... rayIterator ( $test ); $regexIterator = new RegexIterator ( $arrayIter ...
https://man.plustar.jp/php/regexiterator.getmode.html - [similar]
SQL文で collate 関数として使うユーザー定義関数を登録する 5732
« PDO::sqliteCreateAggregate PDO::sqliteCreateFunction » PHP Manual SQLite (PDO) SQL文で collate ... ( 'sqlite::memory:' ); $db -> exec ( "CREATE TABLE test (col1 string)" ); $db -> exec ( "INSERT INTO test ... VALUES ('a1')" ); $db -> exec ( "INSERT INTO test VALUES ('a10')" ); $db -> exec ( "INSERT INTO test ... cmp' ); foreach ( $db -> query ( "SELECT col1 FROM test ORDER BY col1" ) as $row ) { echo $row [ 'col1' ] ... "\n" ; foreach ( $db -> query ( "SELECT col1 FROM test ORDER BY col1 COLLATE NATURAL_CMP" ) as $row ) { e ...
https://man.plustar.jp/php/pdo.sqlitecreatecollation.html - [similar]
SQLのcollate関数として使うPHP関数を登録する 5732
« SQLite3::createAggregate SQLite3::createFunction » PHP Manual SQLite3 SQLのcollate関数として使 ... QLite3 ( ":memory:" ); $db -> exec ( "CREATE TABLE test (col1 string)" ); $db -> exec ( "INSERT INTO test ... VALUES ('a1')" ); $db -> exec ( "INSERT INTO test VALUES ('a10')" ); $db -> exec ( "INSERT INTO test ... ); $defaultSort = $db -> query ( "SELECT col1 FROM test ORDER BY col1" ); $naturalSort = $db -> query ( "S ... ELECT col1 FROM test ORDER BY col1 COLLATE NATURAL_CMP" ); echo "defaul ...
https://man.plustar.jp/php/sqlite3.createcollation.html - [similar]
static メソッドをコールする 5688
« forward_static_call_array func_get_arg » PHP Manual 関数処理 関数 static メソッドをコールする ... lass A { const NAME = 'A' ; public static function test () { $args = func_get_args (); echo static:: NAME ... ends A { const NAME = 'B' ; public static function test () { echo self :: NAME , "\n" ; forward_static_cal ... l (array( 'A' , 'test' ), 'more' , 'args' ); forward_static_call ( 'test ... ' , 'other' , 'args' ); } } B :: test ( 'foo' ); function test () { $args = func_get_arg ...
https://man.plustar.jp/php/function.forward-static-call.html - [similar]
realpath キャッシュ・エントリーを取得 5688
« readlink realpath_cache_size » PHP Manual ファイルシステム 関数 realpath キャッシュ・エントリー ... 力は、 たとえば以下のようになります。 array(2) { ["/test"]=> array(4) { ["key"]=> int(123456789) ["is_dir"] ... => bool(true) ["realpath"]=> string(5) "/test" ["expires"]=> int(1260318939) } ["/test/test.php" ... r"]=> bool(false) ["realpath"]=> string(12) "/root/test.php" ["expires"]=> int(1260318939) } } 参考 realpa ...
https://man.plustar.jp/php/function.realpath-cache-get.html - [similar]
アクセス権 5688
« コンストラクタとデストラクタ オブジェクトの継承 » PHP Manual クラスとオブジェクト アクセス権 ア ... Private は動作しません class Bar { public function test () { $this -> testPrivate (); $this -> testPublic ... (); } public function testPublic () { echo "Bar::testPublic\n" ; } private fu ... nction testPrivate () { echo "Bar::testPrivate\n" ; } } class ... Foo extends Bar { public function testPublic () { echo "Foo::testPublic\n" ; } private fu ...
https://man.plustar.jp/php/language.oop5.visibility.html - [similar]
FTP サーバーにファイルを保存する(非ブロッキング) 5644
« ftp_nb_get ftp_nlist » PHP Manual FTP 関数 FTP サーバーにファイルを保存する(非ブロッキング) ... アップロードを開始する $ret = ftp_nb_put ( $ftp , "test.remote" , "test.local" , FTP_BINARY ); while ( $re ... を再開する <?php // 開始 $ret = ftp_nb_put ( $ftp , "test.remote" , "test.local" , FTP_BINARY , ftp_size ( " ... ); // あるいは: $ret = ftp_nb_put($my_connection, "test.remote", "test.local", // FTP_BINARY, FTP_AUTORESU ...
https://man.plustar.jp/php/function.ftp-nb-put.html - [similar]
static メソッドをコールし、引数を配列で渡す 5556
« create_function forward_static_call » PHP Manual 関数処理 関数 static メソッドをコールし、引数 ... lass A { const NAME = 'A' ; public static function test () { $args = func_get_args (); echo static:: NAME ... ends A { const NAME = 'B' ; public static function test () { echo self :: NAME , "\n" ; forward_static_cal ... l_array (array( 'A' , 'test' ), array( 'more' , 'args' )); forward_static_call ... _array ( 'test' , array( 'other' , 'args' )); } } B :: test ( 'fo ...
https://man.plustar.jp/php/function.forward-static-call-array.html - [similar]
指定したオブジェクトのプロパティを取得する 5556
« get_mangled_object_vars get_parent_class » PHP Manual クラス/オブジェクト関数 指定したオブジェ ... blic $c ; private $d ; static $e ; public function test () { var_dump ( get_object_vars ( $this )); } } $t ... est = new foo ; var_dump ( get_object_vars ( $test )); $test -> test (); ?> 上の例の出力は以下となりま ...
https://man.plustar.jp/php/function.get-object-vars.html - [similar]
Bind a lob object or a string as a lob object to a prepared statement as paramet... 5468
« cubrid_lob_size cubrid_lob2_close » PHP Manual CUBRID 関数 Bind a lob object or a string as a ... 例 例1 cubrid_lob2_bind() example <?php // Table: test_lob (id INT, contents CLOB) $conn = cubrid_connect ... ); cubrid_execute ( $conn , "DROP TABLE if exists test_lob" ); cubrid_execute ( $conn , "CREATE TABLE tes ... )" ); $req = cubrid_prepare ( $conn , "INSERT INTO test_lob VALUES (?, ?)" ); cubrid_bind ( $req , 1 , 3 ) ... , 4 ); cubrid_lob2_bind ( $req , 2 , 'CUBRID LOB2 TEST' , 'CLOB' ); cubrid_execute ( $req ); cubrid_disco ...
https://man.plustar.jp/php/function.cubrid-lob2-bind.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT