Automattic\WooCommerce\Database\Migrations
MigrationHelper::get_wpdb_placeholder_for_type()
Return $wpdb->prepare placeholder for data type.
Метод класса: MigrationHelper{}
Хуков нет.
Возвращает
Строку
. $wpdb placeholder.
Использование
$result = MigrationHelper::get_wpdb_placeholder_for_type( $type ): string;
- $type(строка) (обязательный)
- Data type.
Код MigrationHelper::get_wpdb_placeholder_for_type() MigrationHelper::get wpdb placeholder for type WC 7.5.1
public static function get_wpdb_placeholder_for_type( string $type ): string { return self::$wpdb_placeholder_for_type[ $type ]; }