検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 42 for strings (0.002 sec.)
制御文字かどうかを調べる 7525
« ctype_alpha ctype_digit » PHP Manual Ctype 関数 制御文字かどうかを調べる ctype_cntrl (PHP 4 >= ... alse になります。 例 例1 ctype_cntrl() の例 <?php $strings = array( 'string1' => "\n\r\t" , 'string2' => 'arf ... 12' ); foreach ( $strings as $name => $testcase ) { if ( ctype_cntrl ( $test ...
https://man.plustar.jp/php/function.ctype-cntrl.html - [similar]
小文字かどうかを調べる 7525
« ctype_graph ctype_print » PHP Manual Ctype 関数 小文字かどうかを調べる ctype_lower (PHP 4 >= 4 ... _lower() の例(デフォルトのロケールを利用) <?php $strings = array( 'aac123' , 'qiutoas' , 'QASsdks' ); forea ... ch ( $strings as $testcase ) { if ( ctype_lower ( $testcase )) { ...
https://man.plustar.jp/php/function.ctype-lower.html - [similar]
大文字かどうか調べる 7525
« ctype_space ctype_xdigit » PHP Manual Ctype 関数 大文字かどうか調べる ctype_upper (PHP 4 >= 4. ... _upper() の例(デフォルトのロケールを利用) <?php $strings = array( 'AKLWC139' , 'LMNSDO' , 'akwSKWsm' ); for ... each ( $strings as $testcase ) { if ( ctype_upper ( $testcase )) { ...
https://man.plustar.jp/php/function.ctype-upper.html - [similar]
16 進数を表す文字かどうかを調べる 7525
« ctype_upper Filter » PHP Manual Ctype 関数 16 進数を表す文字かどうかを調べる ctype_xdigit (PHP ... lse になります。 例 例1 ctype_xdigit() の例 <?php $strings = array( 'AB10BC99' , 'AR1012' , 'ab12bc99' ); for ... each ( $strings as $testcase ) { if ( ctype_xdigit ( $testcase )) ...
https://man.plustar.jp/php/function.ctype-xdigit.html - [similar]
SQL の集約関数として使用する PHP 関数を登録する 7525
« SQLite3::__construct SQLite3::createCollation » PHP Manual SQLite3 SQL の集約関数として使用する ... QLite3 ( ':memory:' ); $db -> exec ( "CREATE TABLE strings(a)" ); $insert = $db -> prepare ( 'INSERT INTO str ... ump ( $db -> querySingle ( 'SELECT max_len(a) from strings' )); ?> 上の例の出力は以下となります。 int(5) この ...
https://man.plustar.jp/php/sqlite3.createaggregate.html - [similar]
英字かどうかを調べる 7416
« ctype_alnum ctype_cntrl » PHP Manual Ctype 関数 英字かどうかを調べる ctype_alpha (PHP 4 >= 4.0 ... e_alpha() の例 (デフォルトのロケールを使用) <?php $strings = array( 'KjgWZC' , 'arf12' ); foreach ( $strings ...
https://man.plustar.jp/php/function.ctype-alpha.html - [similar]
数字かどうかを調べる 7416
« ctype_cntrl ctype_graph » PHP Manual Ctype 関数 数字かどうかを調べる ctype_digit (PHP 4 >= 4.0 ... alse になります。 例 例1 ctype_digit() の例 <?php $strings = array( '1820.20' , '10002' , 'wsl!12' ); foreach ... ( $strings as $testcase ) { if ( ctype_digit ( $testcase )) { ...
https://man.plustar.jp/php/function.ctype-digit.html - [similar]
空白以外の印字可能な文字かどうかを調べる 7416
« ctype_digit ctype_lower » PHP Manual Ctype 関数 空白以外の印字可能な文字かどうかを調べる ctype ... alse になります。 例 例1 ctype_graph() の例 <?php $strings = array( 'string1' => "asdf\n\r\t" , 'string2' => ... 'arf12' , 'string3' => 'LKA#@%.54' ); foreach ( $strings as $name => $testcase ) { if ( ctype_graph ( $test ...
https://man.plustar.jp/php/function.ctype-graph.html - [similar]
印字可能な文字かどうかを調べる 7416
« ctype_lower ctype_punct » PHP Manual Ctype 関数 印字可能な文字かどうかを調べる ctype_print (PH ... alse になります。 例 例1 ctype_print() の例 <?php $strings = array( 'string1' => "asdf\n\r\t" , 'string2' => ... 'arf12' , 'string3' => 'LKA#@%.54' ); foreach ( $strings as $name => $testcase ) { if ( ctype_print ( $test ...
https://man.plustar.jp/php/function.ctype-print.html - [similar]
空白、英数字以外の出力可能な文字かどうかを調べる 7416
« ctype_print ctype_space » PHP Manual Ctype 関数 空白、英数字以外の出力可能な文字かどうかを調べ ... alse になります。 例 例1 ctype_punct() の例 <?php $strings = array( 'ABasdk!@!$#' , '!@ # $' , '*&$()' ); for ... each ( $strings as $testcase ) { if ( ctype_punct ( $testcase )) { ...
https://man.plustar.jp/php/function.ctype-punct.html - [similar]
PREV 1 2 3 4 5 NEXT