検索

phrase: max: clip:
target: order:
Results of 251 - 260 of about 389 for foreach (0.074 sec.)
ソースコードを PhpToken オブジェクトで表現されたトークンに分割する 4044
« PhpToken::__toString Tokenizer 関数 » PHP Manual PhpToken ソースコードを PhpToken オブジェクト ... okens = PhpToken :: tokenize ( '<?php echo; ?>' ); foreach ( $tokens as $token ) { echo "Line { $token -> lin ...
https://man.plustar.jp/php/phptoken.tokenize.html - [similar]
現在のエントリが配列あるいはオブジェクトである場合に、そのイテレータを返す 4044
« RecursiveArrayIterator RecursiveArrayIterator::hasChildren » PHP Manual RecursiveArrayIterator ... tor -> hasChildren ()) { // すべての子を表示します foreach ( $iterator -> getChildren () as $key => $value ) ...
https://man.plustar.jp/php/recursivearrayiterator.getchildren.html - [similar]
引数を指定して関数を起動する 4044
« ReflectionFunction::invoke ReflectionFunction::isDisabled » PHP Manual ReflectionFunction 引数 ... (array $conditions , array & $false_conditions ) { foreach ( $conditions as $condition ) { if (! $condition ) ...
https://man.plustar.jp/php/reflectionfunction.invokeargs.html - [similar]
コンストラクタ 4044
« ReflectionParameter::__clone ReflectionParameter::export » PHP Manual ReflectionParameter コン ... new ReflectionFunction ( 'foo' ); echo $reflect ; foreach ( $reflect -> getParameters () as $i => $param ) { ...
https://man.plustar.jp/php/reflectionparameter.construct.html - [similar]
パラメータのデフォルト値を取得する 4044
« ReflectionParameter::getDeclaringFunction ReflectionParameter::getDefaultValueConstantName » P ... ; } $function = new ReflectionFunction ( 'foo' ); foreach ( $function -> getParameters () as $param ) { echo ...
https://man.plustar.jp/php/reflectionparameter.getdefaultvalue.html - [similar]
デフォルト値が定数あるいは null の場合に、その定数名を返す 4044
« ReflectionParameter::getDefaultValue ReflectionParameter::getName » PHP Manual ReflectionParam ... ; } $function = new ReflectionFunction ( 'foo' ); foreach ( $function -> getParameters () as $param ) { echo ...
https://man.plustar.jp/php/reflectionparameter.getdefaultvalueconstantname.html - [similar]
プロパティのドキュメントコメントを取得する 4044
« ReflectionProperty::getDefaultValue ReflectionProperty::getModifiers » PHP Manual ReflectionPr ... , $b ; } $class = new \ ReflectionClass ( 'Foo' ); foreach ( $class -> getProperties () as $property ) { echo ...
https://man.plustar.jp/php/reflectionproperty.getdoccomment.html - [similar]
新しい RegexIterator を作成する 4044
« RegexIterator::accept RegexIterator::getFlags » PHP Manual RegexIterator 新しい RegexIterator ... new RegexIterator ( $arrayIterator , '/^test/' ); foreach ( $regexIterator as $value ) { echo $value . "\n" ...
https://man.plustar.jp/php/regexiterator.construct.html - [similar]
SimpleXML 要素に基づき整形式の XML 文字列を返す 4044
« SimpleXMLElement::addChild SimpleXMLElement::attributes » PHP Manual SimpleXMLElement SimpleXM ... <c>を探す */ $result = $xml -> xpath ( '/a/b/c' ); foreach ( $result as $node ) { echo $node -> asXML (); } ? ...
https://man.plustar.jp/php/simplexmlelement.asxml.html - [similar]
CSV の区切り文字、囲み文字、エスケープ文字をセットする 4044
« SplFileObject::seek SplFileObject::setFlags » PHP Manual SplFileObject CSV の区切り文字、囲み文 ... ect :: READ_CSV ); $file -> setCsvControl ( '|' ); foreach ( $file as $row ) { list ( $fruit , $quantity ) = ...
https://man.plustar.jp/php/splfileobject.setcsvcontrol.html - [similar]