検索

phrase: max: clip:
target: order:
Results of 271 - 280 of about 1200 for var (0.044 sec.)
コードポイントが、Alphabetic プロパティを持つかを調べる 3073
« IntlChar::istitle IntlChar::isULowercase » PHP Manual IntlChar コードポイントが、Alphabetic プ ... 返します。 例 例1 さまざまなコードポイントの例 <?php var_dump ( IntlChar :: isUAlphabetic ( "A" )); var_dum ... p ( IntlChar :: isUAlphabetic ( "1" )); var_dump ( IntlChar :: isUAlphabetic ( "\u{2603}" )); ...
https://man.plustar.jp/php/intlchar.isualphabetic.html - [similar]
ステートメントを実行する 3073
« mysql_xdevapi\Executable mysql_xdevapi\ExecutionStatus » PHP Manual mysql_xdevapi\Executable ス ... ql ( "CREATE DATABASE addressbook" )-> execute (); var_dump ( $result_sql ); $schema = $session -> getSch ... ction_executed = $result_collection -> execute (); var_dump ( $result_collection ); var_dump ( $result_co ...
https://man.plustar.jp/php/mysql-xdevapi-executable.execute.html - [similar]
zip アーカイブのグローバルメタデータを削除する 3073
« PharData::decompressFiles PharData::delete » PHP Manual PharData zip アーカイブのグローバルメタ ... <?php try { $phar = new PharData ( 'myphar.zip' ); var_dump ( $phar -> getMetadata ()); $phar -> setMetad ... ata ( "hi there" ); var_dump ( $phar -> getMetadata ()); $phar -> delMetad ... ata (); var_dump ( $phar -> getMetadata ()); } catch ( Excepti ...
https://man.plustar.jp/php/phardata.delmetadata.html - [similar]
プロパティで宣言されたデフォルト値を返す 3073
« ReflectionProperty::getDeclaringClass ReflectionProperty::getDocComment » PHP Manual Reflectio ... = 0 ; } $ro = new ReflectionClass ( Foo ::class); var_dump ( $ro -> getProperty ( 'bar' )-> getDefaultVa ... lue ()); var_dump ( $ro -> getProperty ( 'baz' )-> getDefaultVa ... lue ()); var_dump ( $ro -> getProperty ( 'boing' )-> getDefault ...
https://man.plustar.jp/php/reflectionproperty.getdefaultvalue.html - [similar]
コメント 3073
« 条件付きサブパターン 再帰的パターン » PHP Manual PCRE 正規表現構文 コメント コメント コメントは ... tch ( '/te(?# this is a comment)st/' , $subject ); var_dump ( $match ); /* 空白文字と # は、PCRE_EXTENDED ... match = preg_match ( '/te #~~~~ st/' , $subject ); var_dump ( $match ); /* PCRE_EXTENDED が有効な場合、全 ... atch = preg_match ( '/te #~~~~ st/x' , $subject ); var_dump ( $match ); 上の例の出力は以下となります。 in ...
https://man.plustar.jp/php/regexp.reference.comments.html - [similar]
ファイルのベース名を取得する 3073
« SplFileInfo::getATime SplFileInfo::getCTime » PHP Manual SplFileInfo ファイルのベース名を取得す ... の例 <?php $info = new SplFileInfo ( 'file.txt' ); var_dump ( $info -> getBasename ()); $info = new SplFi ... leInfo ( '/path/to/file.txt' ); var_dump ( $info -> getBasename ()); $info = new SplFi ... leInfo ( '/path/to/file.txt' ); var_dump ( $info -> getBasename ( '.txt' )); ?> 上の例 ...
https://man.plustar.jp/php/splfileinfo.getbasename.html - [similar]
URL を組み立てる 3073
« Yaf_Route_Supervar Yaf_Route_Supervar::__construct » PHP Manual Yaf_Route_Supervar URL を組み立 ... てる Yaf_Route_Supervar::assemble (Yaf >=2.3.0) Yaf_Route_Supervar::assemb ... le — URL を組み立てる 説明 public Yaf_Route_Supervar::assemble ( array $info , array $query = ? ): stri ... n_TypeError をスローします。 例 例1 Yaf_Route_Supervar::assemble() の例 <?php $router = new Yaf_Router () ... ; $route = new Yaf_Route_Supervar ( 'r' ); $router -> addRoute ( "supervar" , $route ...
https://man.plustar.jp/php/yaf-route-supervar.assemble.html - [similar]
Returns the value for a given key 3044
« Ds\Map::first Ds\Map::hasKey » PHP Manual Map Returns the value for a given key Ds\Map::get (P ... w \ Ds \ Map ([ "a" => 1 , "b" => 2 , "c" => 3 ]); var_dump ( $map -> get ( "a" )); // 1 var_dump ( $map ... w \ Ds \ Map ([ "a" => 1 , "b" => 2 , "c" => 3 ]); var_dump ( $map [ "a" ]); // 1 ?> 上の例の出力は、 たと ...
https://man.plustar.jp/php/ds-map.get.html - [similar]
コマンドラインオプション 3044
« 他の SAPI との違い Usage » PHP Manual コマンドラインの使用法 コマンドラインオプション コマンド ... ion_time -r '$foo = ini_get("max_execution_time"); var_dump($foo);' string(1) "1" # 空の値を渡すと設定ディ ... on_time= -r '$foo = ini_get("max_execution_time"); var_dump($foo);' string(0) "" # 設定ディレクティブは文 ... _time=20 -r '$foo = ini_get("max_execution_time"); var_dump($foo);' string(2) "20" $ php -d max_execution ... akesense -r '$foo = ini_get("max_execution_time"); var_dump($foo);' string(15) "doesntmakesense" -e --pro ...
https://man.plustar.jp/php/features.commandline.options.html - [similar]
保存した数値を減らす 3044
« apcu_clear_cache apcu_delete » PHP Manual APCu 関数 保存した数値を減らす apcu_dec (PECL apcu > ... apcu_dec ( 'anumber' , 10 , $success ), PHP_EOL ; var_dump ( $success ); echo "Now, let's fail" , PHP_EO ... foo' ); $ret = apcu_dec ( 'astring' , 1 , $fail ); var_dump ( $ret ); var_dump ( $fail ); ?> 上の例の出力 ...
https://man.plustar.jp/php/function.apcu-dec.html - [similar]