検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 71 for Token (0.004 sec.)
The Parle\RLexer class 7252
« Parle\Lexer::reset Parle\RLexer::advance » PHP Manual Parle The Parle\RLexer class The Parle\R ... tance is meant to be used with Parle\RParser , the token IDs need to be taken from there. Otherwise, arbitr ... ary token IDs can be supplied. Note, that Parle\Parser is no ... tring $data ): void public dump (): void public getToken (): Parle\Token public insertMacro ( string $name ... xer state, readonly. marker Position of the latest token match, readonly. cursor Current input offset, read ...
https://man.plustar.jp/php/class.parle-rlexer.html - [similar]
Tokenizer 関数 7154
« PhpToken::tokenize token_get_all » PHP Manual Tokenizer Tokenizer 関数 Tokenizer 関数 目次 token ... _get_all — 指定したソースを PHP トークンに分割する token_name — 指定した PHP トークンのシンボル名を取得する ... 関連キーワード: Tokenizer , 関数 , token , all , PhpToken , tokenize , ソ ...
https://man.plustar.jp/php/ref.tokenizer.html - [similar]
7042
« 定義済み定数 PhpToken » PHP Manual Tokenizer 例 例 以下に tokenizer を用いた簡単な PHP スクリプ ... メントを削除し、コードのみを 出力するものです。 例1 tokenizer によるコメントの削除 <?php $source = file_get_ ... contents ( 'example.php' ); $tokens = token_get_all ( $source ); foreach ( $tokens as ... $token ) { if ( is_string ( $token )) { // 簡単な1文字毎の ... トークン echo $token ; } else { // トークン配列 list( $id , $text ) = $ ...
https://man.plustar.jp/php/tokenizer.examples.html - [similar]
定義済み定数 6971
« リソース型 例 » PHP Manual OAuth 定義済み定数 定義済み定数 以下の定数が定義されています。 この ... ロバイダが算出したシグネチャとマッチしません。 OAUTH_TOKEN_USED ( int ) oauth_token が使用済みです。 これまで ... 使用済みであるため、もう使うことはできません。 OAUTH_TOKEN_EXPIRED ( int ) oauth_token の有効期限が切れました ... 。 OAUTH_TOKEN_REVOKED ( int ) oauth_token が無効になりました。も ... う使えません。 OAUTH_TOKEN_REJECTED ( int ) oauth_token がサービスプロバイダに ...
https://man.plustar.jp/php/oauth.constants.html - [similar]
tokenHandler コールバックを設定する 6971
« OAuthProvider::timestampNonceHandler OAuthException » PHP Manual OAuthProvider tokenHandler コ ... ールバックを設定する OAuthProvider::tokenHandler (PECL OAuth >= 1.0.0) OAuthProvider::tokenH ... andler — tokenHandler コールバックを設定する 説明 public OAuthPro ... vider::tokenHandler ( callable $callback_function ): void トーク ... コールバックを設定します。これは OAuthProvider::callTokenHandler() でコールされる関数です。 警告 この関数は、 ...
https://man.plustar.jp/php/oauthprovider.tokenhandler.html - [similar]
ソースコードを PhpToken オブジェクトで表現されたトークンに分割する 6943
« PhpToken::__toString Tokenizer 関数 » PHP Manual PhpToken ソースコードを PhpToken オブジェクト ... で表現されたトークンに分割する PhpToken::tokenize (PHP 8) PhpToken::tokenize — ソースコード ... を PhpToken オブジェクトで表現されたトークンに分割する 説明 pu ... blic static PhpToken::tokenize ( string $code , int $flags = 0 ): array ... 与えられた code を表現する PhpToken オブジェクトの配列を返します。 パラメータ code パー ...
https://man.plustar.jp/php/phptoken.tokenize.html - [similar]
OAuth クラス 6578
« oauth_urlencode OAuth::__construct » PHP Manual OAuth OAuth クラス OAuth クラス (PECL OAuth >= ... a_parameters = ? ): string | false public getAccessToken ( string $access_token_url , string $verifier_toke ... _parameters = ? ): string | false public getRequestToken ( string $request_token_url , string $callback_url ... etTimestamp ( string $timestamp ): mixed public setToken ( string $token , string $token_secret ): bool pub ... teSignature — シグネチャを生成する OAuth::getAccessToken — アクセストークンを取得する OAuth::getCAPath — CA ...
https://man.plustar.jp/php/class.oauth.html - [similar]
Parser examples 6550
« Lexer examples Parle\Lexer » PHP Manual 例 Parser examples Parser examples 例1 Simple calculat ... hp use Parle \{ Parser , ParserException , Lexer , Token }; $p = new Parser ; $p -> token ( "INTEGER" ); $p ... ); $lex = new Lexer ; $lex -> push ( "[+]" , $p -> tokenId ( "'+'" )); $lex -> push ( "[-]" , $p -> tokenId ... ( "'-'" )); $lex -> push ( "[*]" , $p -> tokenId ( "'*'" )); $lex -> push ( "[/]" , $p -> tokenId ... ( "'/'" )); $lex -> push ( "\\d+" , $p -> tokenId ( "INTEGER" )); $lex -> push ( "\\s+" , Token :: ...
https://man.plustar.jp/php/parle.examples.parser.html - [similar]
トークンの文字列表現を返す 6367
« PhpToken::isIgnorable PhpToken::tokenize » PHP Manual PhpToken トークンの文字列表現を返す PhpToken ... oken::__toString (PHP 8) PhpToken::__toString — トークンの文字列表現を返す 説明 publ ... ic PhpToken::__toString (): string トークンの文字列表現を返しま ... 戻り値 トークンの文字列表現を返します。 例 例1 PhpToken::__toString() の例 <?php $token = new PhpToken ( T ... _ECHO , 'echo' ); echo $token ; 上の例の出力は以下となります。 echo 参考 token_n ...
https://man.plustar.jp/php/phptoken.tostring.html - [similar]
Tokenizer 6269
« tidy_warning_count はじめに » PHP Manual その他の基本モジュール Tokenizer Tokenizer はじめに イ ... トール手順 実行時設定 リソース型 定義済み定数 例 PhpToken — PhpToken クラス PhpToken::__construct — 新しい P ... hpToken オブジェクトを返す PhpToken::getTokenName — トーク ... ンの名前を返す PhpToken::is — 指定された種類のトークンかを調べる PhpToken: ... e — トークンがPHPパーサから無視されるかを調べる PhpToken::__toString — トークンの文字列表現を返す PhpToken: ...
https://man.plustar.jp/php/book.tokenizer.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT