Basics::Reserved
Detects if the word is a reserved word and if so, returns it with quotation marks. This was a private function now available to everyone. Sintaxe namespace ProtocolLive\PhpLiveDb; abstract class Basics{
public static function
Reserved(
}
string
$Field
):string;
Example
Basics::Reserved('test')
//test Basics::Reserved('group') //`group` |