Results of 1 - 10 of about 14 for zA (0.013 sec.)
- 例 13741
- « 定義済み定数 ZipArchive » PHP Manual Zip 例 例 例1 Zip アーカイブの作成 <?php $zip = new ZipAr
...
?> 例2 アーカイブの詳細の出力および一覧表示 <?php $za = new ZipArchive (); $za -> open ( 'test_with_comm ...
ent.zip' ); print_r ( $za ); var_dump ( $za ); echo "numFiles: " . $za -> nu ...
mFiles . "\n" ; echo "status: " . $za -> status . "\n" ; echo "statusSys: " . $za -> sta ...
tusSys . "\n" ; echo "filename: " . $za -> filename . "\n" ; echo "comment: " . $za -> com ...
-
https://man.plustar.jp/php/zip.examples.html
- [similar]
- 生バイナリを base64 文字列にエンコードする 10590
- « sodium_base642bin sodium_bin2hex » PHP Manual Sodium 関数 生バイナリを base64 文字列にエンコー
...
SE64_VARIANT_ORIGINAL - 標準的な base64 文字列 ( A-Za-z0-9/\+ ) の場合に指定します。 SODIUM_BASE64_VARIA ...
T_ORIGINAL_NO_PADDING - 標準的な base64 文字列 ( A-Za-z0-9/\+ ) ですが、 = でパディングしない場合に指定し ...
RLに埋め込んでも安全な base64 エンコーディング ( A-Za-z0-9\-_ ) SODIUM_BASE64_VARIANT_URLSAFE_NO_PADDING ...
RLに埋め込んでも安全な base64 エンコーディング ( A-Za-z0-9\-_ ) ですが、 = でパディングしない場合に指定し ...
-
https://man.plustar.jp/php/function.sodium-bin2base64.html
- [similar]
- base64 エンコードされた文字列を、生バイナリにデコードする 10432
- « sodium_add sodium_bin2base64 » PHP Manual Sodium 関数 base64 エンコードされた文字列を、生バイナ
...
SE64_VARIANT_ORIGINAL - 標準的な base64 文字列 ( A-Za-z0-9/\+ ) の場合に指定します。 SODIUM_BASE64_VARIA ...
T_ORIGINAL_NO_PADDING - 標準的な base64 文字列 ( A-Za-z0-9/\+ ) ですが、 = でパディングされていない場合に ...
RLに埋め込んでも安全な base64 エンコーディング ( A-Za-z0-9\-_ ) SODIUM_BASE64_VARIANT_URLSAFE_NO_PADDING ...
RLに埋め込んでも安全な base64 エンコーディング ( A-Za-z0-9\-_ ) ですが、 = でパディングされていない場合に ...
-
https://man.plustar.jp/php/function.sodium-base642bin.html
- [similar]
- Character classes 9785
- « Character representations Unicode character classes » PHP Manual Pattern matching Character cl
...
character, [^ \t\n\r\f\v] . \w Word character, [a-zA-Z0-9_] . \W Non-word character, [^a-zA-Z0-9_] . 関 ...
es , listed , space , within , contained , range , zA , single ...
-
https://man.plustar.jp/php/parle.regex.charclass.html
- [similar]
- データが存在するロケールの配列を取得する 8384
- « IntlCalendar::getActualMinimum IntlCalendar::getDayOfWeekType » PHP Manual IntlCalendar データ
...
なります。 Array ( [0] => af [1] => af_NA [2] => af_ZA [3] => agq [4] => agq_CM [5] => ak [6] => ak_GH [7 ...
ant_MO [597] => zh_Hant_TW [598] => zu [599] => zu_ZA ) 関連キーワード: 配列 , データ , 取得 , 存在 , In ...
-
https://man.plustar.jp/php/intlcalendar.getavailablelocales.html
- [similar]
- Lexer examples 8384
- « 例 Parser examples » PHP Manual 例 Lexer examples Lexer examples 例1 Tokenize comma separated
...
, Lexer }; $lex = new Lexer ; $lex -> push ( "\$[a-zA-Z_][a-zA-Z0-9_]*" , 1 ); $lex -> push ( "=" , 2 ); ...
-
https://man.plustar.jp/php/parle.examples.lexer.html
- [similar]
- 定数 8017
- « 外部から来る変数 構文 » PHP Manual 言語リファレンス 定数 定数 目次 構文 自動的に定義される定数
...
に続きます。正規表現で示すと次のようになります。 ^[a-zA-Z_\x80-\xff][a-zA-Z0-9_\x80-\xff]*$ define() 関数を ...
-
https://man.plustar.jp/php/language.constants.html
- [similar]
- 文字列の一方向のハッシュ化を行う 7877
- « crc32 echo » PHP Manual String 関数 文字列の一方向のハッシュ化を行う crypt (PHP 4, PHP 5, PHP
...
準の DES ベースのハッシュで、 アルファベット "./0-9A-Za-z" からなる 2 文字の salt を使用するもの。 salt と ...
の文字から順に並びます。 0 から 63 までの値は ./0-9A-Za-z の範囲内の文字でエンコードされます。 salt に無効 ...
"、2 桁のコストパラメータ、"$"、そして文字 "./0-9A-Za-z" からなる 22 文字となります。 この範囲外の文字を ...
-
https://man.plustar.jp/php/function.crypt.html
- [similar]
- ユーザー定義関数 7877
- « 関数 関数の引数 » PHP Manual 関数 ユーザー定義関数 ユーザー定義関数 関数は次のような構文で定義
...
アンダースコアが続くものです。正規表現で表すと、 ^[a-zA-Z_\x80-\xff][a-zA-Z0-9_\x80-\xff]*$ . となります。 ...
-
https://man.plustar.jp/php/functions.user-defined.html
- [similar]
- 基本的な事 7649
- « 変数 定義済みの変数 » PHP Manual 変数 基本的な事 基本的な事 PHP の変数はドル記号の後に変数名が
...
れば、これは次の ように表現することができます。 ^[a-zA-Z_\x80-\xff][a-zA-Z0-9_\x80-\xff]*$ 注意 : ここで言 ...
-
https://man.plustar.jp/php/language.variables.basics.html
- [similar]