検索

phrase: max: clip:
target: order:
Results of 411 - 420 of about 1200 for var (0.034 sec.)
null が許されるかをチェックする 2878
« ReflectionType ReflectionType::__toString » PHP Manual ReflectionType null が許されるかをチェッ ... ctionParams = $reflectionFunc -> getParameters (); var_dump ( $reflectionParams [ 0 ]-> getType ()-> allo ... wsNull ()); var_dump ( $reflectionParams [ 1 ]-> getType ()-> allo ...
https://man.plustar.jp/php/reflectiontype.allowsnull.html - [similar]
ファイルがディレクトリかどうかを調べる 2878
« SplFileInfo::getType SplFileInfo::isExecutable » PHP Manual SplFileInfo ファイルがディレクトリ ... ?php $d = new SplFileInfo ( dirname ( __FILE__ )); var_dump ( $d -> isDir ()); $d = new SplFileInfo ( __F ... ILE__ ); var_dump ( $d -> isDir ()); ?> 上の例の出力は、 たとえ ...
https://man.plustar.jp/php/splfileinfo.isdir.html - [similar]
ファイルへのパスを文字列で返す 2878
« SplFileInfo::setInfoClass SplFileObject » PHP Manual SplFileInfo ファイルへのパスを文字列で返す ... ng() の例 <?php $info = new SplFileInfo ( 'foo' ); var_dump ( $info -> __toString ()); echo $info . PHP_E ... OL ; $info = new SplFileInfo ( '/usr/bin/php' ); var_dump ( $info -> __toString ()); echo $info . PHP_E ...
https://man.plustar.jp/php/splfileinfo.tostring.html - [similar]
行の最大バイト数を取得する 2878
« SplFileObject::getFlags SplFileObject::hasChildren » PHP Manual SplFileObject 行の最大バイト数 ... の例 <?php $file = new SplFileObject ( "file.txt" ); var_dump ( $file -> getMaxLineLen ()); $file -> setMax ... LineLen ( 20 ); var_dump ( $file -> getMaxLineLen ()); ?> 上の例の出力 ...
https://man.plustar.jp/php/splfileobject.getmaxlinelen.html - [similar]
Check to see if the object is the first instance system-wide of named shared mem... 2878
« SyncSharedMemory::__construct SyncSharedMemory::read » PHP Manual SyncSharedMemory Check to se ... ()) { // Do first time initialization work here. } var_dump ( $mem -> first ()); $mem2 = new SyncSharedMe ... mory ( "AppReportName" , 1024 ); var_dump ( $mem2 -> first ()); ?> 上の例の出力は、 たと ...
https://man.plustar.jp/php/syncsharedmemory.first.html - [similar]
Retrieve exception's type 2878
« Yar_Server_Exception Yar_Client_Exception » PHP Manual Yar_Server_Exception Retrieve exception ... "client" ); } catch ( Yar_Server_Exception $e ) { var_dump ( $e -> getType ()); var_dump ( $e -> getMess ...
https://man.plustar.jp/php/yar-server-exception.gettype.html - [similar]
配列がまだエントリを持っているかどうかチェックする 2849
« ArrayIterator::unserialize CachingIterator » PHP Manual ArrayIterator 配列がまだエントリを持っ ... ray ); $iterator = $arrayobject -> getIterator (); var_dump ( $iterator -> valid ()); //bool(true) $itera ... ムに進める //配列要素が 1 つしかないので bool(false) var_dump ( $iterator -> valid ()); ?> 関連キーワード: ...
https://man.plustar.jp/php/arrayiterator.valid.html - [similar]
Returns the result of adding all given values to the deque 2849
« Ds\Deque::map Ds\Deque::pop » PHP Manual Deque Returns the result of adding all given values t ... e <?php $deque = new \ Ds \ Deque ([ 1 , 2 , 3 ]); var_dump ( $deque -> merge ([ 4 , 5 , 6 ])); var_dump ...
https://man.plustar.jp/php/ds-deque.merge.html - [similar]
Creates a new instance 2849
« Ds\Map::clear Ds\Map::copy » PHP Manual Map Creates a new instance Ds\Map::__construct (PECL d ... onstruct() example <?php $map = new \ Ds \ Map (); var_dump ( $map ); $map = new \ Ds \ Map ([ "a" => 1 , ... "b" => 2 , "c" => 3 ]); var_dump ( $map ); ?> 上の例の出力は、 たとえば以下のよ ...
https://man.plustar.jp/php/ds-map.construct.html - [similar]
Returns the sum of all values in the map 2849
« Ds\Map::sorted Ds\Map::toArray » PHP Manual Map Returns the sum of all values in the map Ds\Ma ... w \ Ds \ Map ([ "a" => 1 , "b" => 2 , "c" => 3 ]); var_dump ( $map -> sum ()); ?> 上の例の出力は、 たとえ ... \ Ds \ Map ([ "a" => 1 , "b" => 2.5 , "c" => 3 ]); var_dump ( $map -> sum ()); ?> 上の例の出力は、 たとえ ...
https://man.plustar.jp/php/ds-map.sum.html - [similar]