PHP 클래스 Inpsyde\MultilingualPress\Database\WPDBTableStringReplacer

부터: 3.0.0
상속: implements Inpsyde\MultilingualPress\Database\TableStringReplacer
파일 보기 프로젝트 열기: inpsyde/multilingual-press

공개 메소드들

메소드 설명
__construct ( ) Constructor. Sets up the properties.
replace_string ( string $table, array $columns, string $search, string $replacement ) : integer Replaces one string with another all given columns of the given table at once.

비공개 메소드들

메소드 설명
get_replacements_sql ( array $columns, string $search, string $replacement ) : string Returns the according SQL string for replacing the given string with the given replacement in the given columns.

메소드 상세

__construct() 공개 메소드

Constructor. Sets up the properties.
부터: 3.0.0
public __construct ( )

replace_string() 공개 메소드

Replaces one string with another all given columns of the given table at once.
부터: 3.0.0
public replace_string ( string $table, array $columns, string $search, string $replacement ) : integer
$table string The name of the table to replace the string in.
$columns array The names of all columns to replace the string in.
$search string The string to replace.
$replacement string The replacment.
리턴 integer The number of affected rows.