検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 179 for hello (0.031 sec.)
Script Injection Attacks 6799
« Request Injection Attacks MongoDB\Driver » PHP Manual Security Script Injection Attacks Script ... \ MongoDB \ Driver \ Command ( [ 'eval' => "print('Hello, $username !');" ] ); $r = $m -> executeCommand ( ... \ MongoDB \ Driver \ Command ( [ 'eval' => "print('Hello, $username !');" ] ); $r = $m -> executeCommand ( ... Now MongoDB executes the JavaScript string "print('Hello, '); db.users.drop(); print('!');" . This attack i ... d ( [ 'eval' => "function greet(username) { print('Hello, ' + username + '!'); }" , 'args' => $args , ] ); ...
https://man.plustar.jp/php/mongodb.security.script_injection.html - [similar]
ノードが子を持つかどうかを調べる 6799
« tidyNode::getParent tidyNode::hasSiblings » PHP Manual tidyNode ノードが子を持つかどうかを調べ ... title>title</title>'; ?> <# /* JSTE code */ alert('Hello World'); #> </head> <body> <?php // PHP code echo ... 'hello world!'; ?> <% /* ASP code */ response.write("Hell ... o World!") %> <!-- Comments --> Hello World </body></html> Outside HTML HTML; $tidy = ti ...
https://man.plustar.jp/php/tidynode.haschildren.html - [similar]
ColumnResult のコンストラクタ 6744
« mysql_xdevapi\ColumnResult ColumnResult::getCharacterSetName » PHP Manual mysql_xdevapi\Column ... $session -> sql ( "CREATE TABLE nonsense.numbers (hello int, world float unsigned)" )-> execute (); $sessi ... able ( "numbers" ); $result1 = $table -> select ( 'hello' , 'world' )-> execute (); // Returns an array of ... 出力は、 たとえば以下のようになります。 Column label hello is type 19 and is Signed. Column label world is ty ... Object ( [type] => 1 [type_name] => SINT [name] => hello [original_name] => hello [table] => numbers [origi ...
https://man.plustar.jp/php/mysql-xdevapi-columnresult.construct.html - [similar]
このノードが兄弟ノードを持つかどうかを調べる 6744
« tidyNode::hasChildren tidyNode::isAsp » PHP Manual tidyNode このノードが兄弟ノードを持つかどう ... title>title</title>'; ?> <# /* JSTE code */ alert('Hello World'); #> </head> <body> <?php // PHP code echo ... 'hello world!'; ?> <% /* ASP code */ response.write("Hell ... o World!") %> <!-- Comments --> Hello World </body></html> Outside HTML HTML; $tidy = ti ...
https://man.plustar.jp/php/tidynode.hassiblings.html - [similar]
暗号化のために、シークレットストリームのコンテキストを初期化する 6688
« sodium_crypto_secretstream_xchacha20poly1305_init_pull sodium_crypto_secretstream_xchacha20pol ... UM_BASE64_VARIANT_ORIGINAL ); file_put_contents ( 'hello.txt' , 'Hello world!' ); encrypt_file ( 'hello.txt ... ' , 'hello.txt.encrypted' , $key ); var_dump ( sodium_bin2hex ... ( file_get_contents ( 'hello.txt.encrypted' ))); ?> 上の例の出力は、 たとえば以 ...
https://man.plustar.jp/php/function.sodium-crypto-secretstream-xchacha20poly1305... - [similar]
文字列の最初から空白 (もしくはその他の文字) を取り除く 6633
« localeconv md5_file » PHP Manual String 関数 文字列の最初から空白 (もしくはその他の文字) を取り ... s :) ... " ; $binary = "\x09Example string\x0A" ; $hello = "Hello World" ; var_dump ( $text , $binary , $he ... \t." ); var_dump ( $trimmed ); $trimmed = ltrim ( $hello , "Hdle" ); var_dump ( $trimmed ); // ASCII 制御文 ... :) ... " string(16) " Example string " string(11) "Hello World" string(30) "These are a few words :) ... " ...
https://man.plustar.jp/php/function.ltrim.html - [similar]
復号のためのシークレットストリームのコンテキストを初期化する 6633
« sodium_crypto_secretbox sodium_crypto_secretstream_xchacha20poly1305_init_push » PHP Manual So ... a8844d8da36a668e802cfea2c' ); file_put_contents ( 'hello.enc' , $example ); decrypt_file ( 'hello.enc' , 'h ... crypted' , $key ); var_dump ( file_get_contents ( 'hello.txt.decrypted' )); ?> 上の例の出力は、 たとえば以下 ... のようになります。 string(12) "Hello world!" 関連キーワード: ストリーム , 復号 , コンテ ...
https://man.plustar.jp/php/function.sodium-crypto-secretstream-xchacha20poly1305... - [similar]
可変変数 6633
« 変数のスコープ 外部から来る変数 » PHP Manual 変数 可変変数 可変変数 変数名を可変にできると便利 ... 変数は、次のような命令でセッ トします。 <?php $a = 'hello' ; ?> 可変変数は、変数の値をとり、変数の名前として ... 扱います。上の例では、 hello は、ドル記号を二つ使用することにより、 変数の名前と ... 、PHP シンボルツリーに定義されてい ます。これらは、"hello" を値とする $a と "world" を値とする $hello です。 ... は、次の命令と全く同じとなります。 <?php echo " $a $hello " ; ?> すなわち、両方共、 hello world を出 力します ...
https://man.plustar.jp/php/language.variables.variable.html - [similar]
6633
« 定義済み定数 アプリケーションの設定 » PHP Manual Yaf 例 例 例1 標準的なアプリケーションのディレ ... unction indexAction () { $this -> _view -> word = "hello world" ; // あるいは // $this->getView()->word = " ... デフォルトのビューテンプレート <html> <head> <title>Hello World</title> </head> <body> <?php echo $word ; ?> ... たとえば以下のようになります。 <html> <head> <title>Hello World</title> </head> <body> hello world </body> < ...
https://man.plustar.jp/php/yaf.tutorials.html - [similar]
文字列の先頭および末尾にあるホワイトスペースを取り除く 6566
« substr ucfirst » PHP Manual String 関数 文字列の先頭および末尾にあるホワイトスペースを取り除く ... s :) ... " ; $binary = "\x09Example string\x0A" ; $hello = "Hello World" ; var_dump ( $text , $binary , $he ... \t." ); var_dump ( $trimmed ); $trimmed = trim ( $hello , "Hdle" ); var_dump ( $trimmed ); $trimmed = trim ... ( $hello , 'HdWr' ); var_dump ( $trimmed ); // ASCII 制御文 ... :) ... " string(16) " Example string " string(11) "Hello World" string(28) "These are a few words :) ..." s ...
https://man.plustar.jp/php/function.trim.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT