PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

mysqlnd_ms_match_wild - Finds whether a table name matches a wildcard pattern or not | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

mysqlnd_ms_match_wild

(PECL mysqlnd_ms >= 1.1.0)

mysqlnd_ms_match_wildFinds whether a table name matches a wildcard pattern or not

説明

bool mysqlnd_ms_match_wild ( string $table_name , string $wildcard )

Finds whether a table name matches a wildcard pattern or not.

This function is not of much practical relevance with PECL mysqlnd_ms 1.1.0 because the plugin does not support MySQL replication table filtering yet.

パラメータ

table_name

The table name to check if it is matched by the wildcard.

wildcard

The wildcard pattern to check against the table name. The wildcard pattern supports the same placeholders as MySQL replication filters do.

MySQL replication filters can be configured by using the MySQL Server configuration options --replicate-wild-do-table and --replicate-wild-do-db. Please, consult the MySQL Reference Manual to learn more about this MySQL Server feature.

The supported placeholders are:

  • % - zero or more literals
  • _ - one literal

Placeholders can be escaped using \.

返り値

Returns TRUE table_name is matched by wildcard. Otherwise, returns FALSE

例1 mysqlnd_ms_match_wild() example

<?php
var_dump
(mysqlnd_ms_match_wild("schema_name.table_name""schema%"));
var_dump(mysqlnd_ms_match_wild("abc""_"));
var_dump(mysqlnd_ms_match_wild("table1""table_"));
var_dump(mysqlnd_ms_match_wild("asia_customers""%customers"));
var_dump(mysqlnd_ms_match_wild("funny%table","funny\%table"));
var_dump(mysqlnd_ms_match_wild("funnytable""funny%table"));
?>

上の例の出力は以下となります。

bool(true)
bool(false)
bool(true)
bool(true)
bool(true)
bool(true)


忘却曲線を使ってこの関数を確実に記憶に残す

フォーラムで「mysqlnd_ms_match_wild - Finds whether a table name matches a wildcard pattern or not」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | mysqlnd_ms_match_wild - Finds whether a table name matches a wildcard pattern or not」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: