検索

phrase: max: clip:
target: order:
Results of 341 - 350 of about 1070 for Dump (0.112 sec.)
このクラスがクローン可能かどうかを返す 3048
« ReflectionClass::isAnonymous ReflectionClass::isEnum » PHP Manual ReflectionClass このクラスが ... oneable = new ReflectionClass ( 'Cloneable' ); var_dump ( $notCloneable -> isCloneable ()); var_dump ( $cl ...
https://man.plustar.jp/php/reflectionclass.iscloneable.html - [similar]
final クラスであるかどうかを調べる 3048
« ReflectionClass::isEnum ReflectionClass::isInstance » PHP Manual ReflectionClass final クラスで ... ss = new ReflectionClass ( 'TestFinalClass' ); var_dump ( $normalClass -> isFinal ()); var_dump ( $finalCl ...
https://man.plustar.jp/php/reflectionclass.isfinal.html - [similar]
列挙型が case を持つかを調べる 3048
« ReflectionEnum::getCases ReflectionEnum::isBacked » PHP Manual ReflectionEnum 列挙型が case を ... } $rEnum = new ReflectionEnum ( Suit ::class); var_dump ( $rEnum -> hasCase ( 'Hearts' )); var_dump ( $rEn ...
https://man.plustar.jp/php/reflectionenum.hascase.html - [similar]
null が許されるかをチェックする 3048
« ReflectionType ReflectionType::__toString » PHP Manual ReflectionType null が許されるかをチェッ ... nParams = $reflectionFunc -> getParameters (); var_dump ( $reflectionParams [ 0 ]-> getType ()-> allowsNul ... l ()); var_dump ( $reflectionParams [ 1 ]-> getType ()-> allowsNul ...
https://man.plustar.jp/php/reflectiontype.allowsnull.html - [similar]
ファイルがディレクトリかどうかを調べる 3048
« SplFileInfo::getType SplFileInfo::isExecutable » PHP Manual SplFileInfo ファイルがディレクトリ ... $d = new SplFileInfo ( dirname ( __FILE__ )); var_dump ( $d -> isDir ()); $d = new SplFileInfo ( __FILE__ ... ); var_dump ( $d -> isDir ()); ?> 上の例の出力は、 たとえば以下 ...
https://man.plustar.jp/php/splfileinfo.isdir.html - [similar]
ファイルへのパスを文字列で返す 3048
« SplFileInfo::setInfoClass SplFileObject » PHP Manual SplFileInfo ファイルへのパスを文字列で返す ... の例 <?php $info = new SplFileInfo ( 'foo' ); var_dump ( $info -> __toString ()); echo $info . PHP_EOL ; ... $info = new SplFileInfo ( '/usr/bin/php' ); var_dump ( $info -> __toString ()); echo $info . PHP_EOL ; ...
https://man.plustar.jp/php/splfileinfo.tostring.html - [similar]
行の最大バイト数を取得する 3048
« SplFileObject::getFlags SplFileObject::hasChildren » PHP Manual SplFileObject 行の最大バイト数 ... ?php $file = new SplFileObject ( "file.txt" ); var_dump ( $file -> getMaxLineLen ()); $file -> setMaxLineL ... en ( 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... 3048
« SyncSharedMemory::__construct SyncSharedMemory::read » PHP Manual SyncSharedMemory Check to se ... { // Do first time initialization work here. } var_dump ( $mem -> first ()); $mem2 = new SyncSharedMemory ... ( "AppReportName" , 1024 ); var_dump ( $mem2 -> first ()); ?> 上の例の出力は、 たとえば ...
https://man.plustar.jp/php/syncsharedmemory.first.html - [similar]
Retrieve exception's type 3048
« Yar_Server_Exception Yar_Client_Exception » PHP Manual Yar_Server_Exception Retrieve exception ... ient" ); } catch ( Yar_Server_Exception $e ) { var_dump ( $e -> getType ()); var_dump ( $e -> getMessage ( ...
https://man.plustar.jp/php/yar-server-exception.gettype.html - [similar]
配列がまだエントリを持っているかどうかチェックする 3018
« ArrayIterator::unserialize CachingIterator » PHP Manual ArrayIterator 配列がまだエントリを持っ ... ); $iterator = $arrayobject -> getIterator (); var_dump ( $iterator -> valid ()); //bool(true) $iterator - ... 進める //配列要素が 1 つしかないので bool(false) var_dump ( $iterator -> valid ()); ?> 関連キーワード: 配列 ...
https://man.plustar.jp/php/arrayiterator.valid.html - [similar]