検索

phrase: max: clip:
target: order:
Results of 111 - 120 of about 418 for Foo (0.059 sec.)
ユーザー定義のストリームフィルタを登録する 4443
« stream_filter_prepend stream_filter_remove » PHP Manual ストリーム 関数 ユーザー定義のストリー ... すでに定義されている場合、 false を返します。 例 例1 foo-bar.txt ストリームの文字を大文字化するフィルタ 下記 ... 文字を 大文字化する strtoupper ストリームを実装し、 foo-bar.txt ストリームに適用するものです。 <?php /* フ ... die( "Failed to register filter" ); $fp = fopen ( "foo-bar.txt" , "w" ); /* フィルタを開いたストリームに付 ... fp ); /* ファイルを読み出し出力する */ readfile ( "foo-bar.txt" ); ?> 上の例の出力は以下となります。 LINE ...
https://man.plustar.jp/php/function.stream-filter-register.html - [similar]
Sets the static variables in function or method scope 4443
« uopz_set_return uopz_undefine » PHP Manual Uopz 関数 Sets the static variables in function or ... 例 例1 Basic uopz_set_static() Usage <?php function foo () { static $bar = 'baz' ; var_dump ( $bar ); } uo ... pz_set_static ( 'foo' , [ 'bar' => 'qux' ]); foo (); ?> 上の例の出力は以 ...
https://man.plustar.jp/php/function.uopz-set-static.html - [similar]
Delete an element from sequence type column using OID 4410
« cubrid_schema cubrid_seq_insert » PHP Manual CUBRID 関数 Delete an element from sequence type ... , "dba" ); @ cubrid_execute ( $conn , "DROP TABLE foo" ); cubrid_execute ( $conn , "CREATE TABLE foo(a i ... har(10))" ); cubrid_execute ( $conn , "INSERT INTO foo(a, b, c, d) VALUES(1, {1,2,3}, {11,22,33,333}, 'a' ... ); $req = cubrid_execute ( $conn , "SELECT * FROM foo" , CUBRID_INCLUDE_OID ); cubrid_move_cursor ( $req ...
https://man.plustar.jp/php/function.cubrid-seq-drop.html - [similar]
Insert a single element to set type column using OID 4410
« cubrid_seq_put cubrid_set_autocommit » PHP Manual CUBRID 関数 Insert a single element to set t ... , "dba" ); @ cubrid_execute ( $conn , "DROP TABLE foo" ); cubrid_execute ( $conn , "CREATE TABLE foo(a i ... har(10))" ); cubrid_execute ( $conn , "INSERT INTO foo(a, b, c, d) VALUES(1, {1,2,3}, {11,22,33,333}, 'a' ... ); $req = cubrid_execute ( $conn , "SELECT * FROM foo" , CUBRID_INCLUDE_OID ); cubrid_move_cursor ( $req ...
https://man.plustar.jp/php/function.cubrid-set-add.html - [similar]
引数が、現在のスコープから関数としてコール可能な値かどうかを調べる 4410
« is_bool is_countable » PHP Manual 変数操作 関数 引数が、現在のスコープから関数としてコール可能 ... トラクタを callable だとはみなしません。 <?php class Foo { public function __construct () {} public functio ... n foo () {} } var_dump ( is_callable (array( 'Foo' , '__ ... construct' )), is_callable (array( 'Foo' , 'foo' )) ); 上の例の出力は以下となります。 bool ...
https://man.plustar.jp/php/function.is-callable.html - [similar]
インターフェイスの名前を取得する 4410
« ReflectionClass::getFileName ReflectionClass::getInterfaces » PHP Manual ReflectionClass インタ ... ionClass::getInterfaceNames() の例 <?php interface Foo { } interface Bar { } class Baz implements Foo , B ... 力は、 たとえば以下のようになります。 Array ( [0] => Foo [1] => Bar ) 参考 ReflectionClass::getInterfaces() ...
https://man.plustar.jp/php/reflectionclass.getinterfacenames.html - [similar]
Insert an element to a sequence type column using OID 4384
« cubrid_seq_drop cubrid_seq_put » PHP Manual CUBRID 関数 Insert an element to a sequence type c ... , "dba" ); @ cubrid_execute ( $conn , "DROP TABLE foo" ); cubrid_execute ( $conn , "CREATE TABLE foo(a i ... har(10))" ); cubrid_execute ( $conn , "INSERT INTO foo(a, b, c, d) VALUES(1, {1,2,3}, {11,22,33,333}, 'a' ... ); $req = cubrid_execute ( $conn , "SELECT * FROM foo" , CUBRID_INCLUDE_OID ); cubrid_move_cursor ( $req ...
https://man.plustar.jp/php/function.cubrid-seq-insert.html - [similar]
Update the element value of sequence type column using OID 4384
« cubrid_seq_insert cubrid_set_add » PHP Manual CUBRID 関数 Update the element value of sequence ... , "dba" ); @ cubrid_execute ( $conn , "DROP TABLE foo" ); cubrid_execute ( $conn , "CREATE TABLE foo(a i ... har(10))" ); cubrid_execute ( $conn , "INSERT INTO foo(a, b, c, d) VALUES(1, {1,2,3}, {11,22,33,333}, 'a' ... ); $req = cubrid_execute ( $conn , "SELECT * FROM foo" , CUBRID_INCLUDE_OID ); cubrid_move_cursor ( $req ...
https://man.plustar.jp/php/function.cubrid-seq-put.html - [similar]
下位互換性のない変更点 4384
« 新しいグローバル定数 PHP 7.3.x で推奨されなくなる機能 » PHP Manual PHP 7.2.x から PHP 7.3.x へ ... す。 たとえば、以下のような場合です: <?php $str = <<<FOO abcdefg FOO FOO ; ?> インデントされた FOO が入った ... ンからは ヒアドキュメントの終了と解釈され、 後に続く FOO; が syntax error になるでしょう。 この問題は、文字 ... ntinue 2 と同じように振る舞います。 <?php while ( $foo ) { switch ( $bar ) { case "baz" : continue; // Wa ... から 7.2 の間は偶然動いていました。 <?php function foo (... $args ) { var_dump ( $args ); } function gen ...
https://man.plustar.jp/php/migration73.incompatible.html - [similar]
Request Injection Attacks 4384
« Security Script Injection Attacks » PHP Manual Security Request Injection Attacks Request Inje ... is by getting http://www.example.com?username[$ne]=foo , which PHP will magically turn into an associativ ... \MongoDB\Driver\Query( [ 'username' => [ '$ne' => 'foo' ] ] ) , which will return all users not named "fo ...
https://man.plustar.jp/php/mongodb.security.request_injection.html - [similar]