Description


string _p(string $phrase [, array $replacements] )


 Wrap your phrase or var_name in the _p() function. The phrase/var_name have to define at phrase.json

Please check here: Translation for more detail


Parameters


$phrase

English phrase or Var name

$replacements

Pass an associative array to add dynamic phrases. 

Examples


/**
 * Prints the phrase "Hello World!" and tries to find
 * a translation in the database if it exists.
 */
echo _p('Hello World!');


/**
 * Pass an associative array to add dynamic phrases.
 */
echo _p('My name is {name}', ['name' => 'Bob']);