Mysql
 sql >> Database >  >> RDS >> Mysql

Output con PHP il valore di una variabile o di una COSTANTE predefinita da una stringa di risultati MySQL

Forse se salvi le stringhe DB in sprint_f formato, non vedo un altro modo:

$color = 'blue';
define('GRASS_COLOR', 'green');

$text = 'The sky is %s and the grass is %s';
$text = sprintf( $text, $color , GRASS_COLOR );

echo $text;

AGGIORNAMENTO

A quanto pare sono stato un po' troppo frettoloso con la constatazione 'non vedo altro modo '. In realtà questo è sicuramente realizzabile con l'uso di get_defined_vars() e get_defined_constants() funzioni. L'idea è di raccogliere tutte le variabili e le costanti definite dall'utente, quindi sostituirle in una stringa. Questo potrebbe anche essere un semplice motore di modelli (se non esiste già).

// place here value from database
$text = 'The sky is $color and</br> the grass is GRASS_COLOR';

$color = 'blue';
define('GRASS_COLOR', 'green');

// collect all defined variables and filter them to get only variables of string and numeric type
$values = array_filter( get_defined_vars(), function( $item ) {
    return is_string($item) || is_numeric($item);
});

// append the dollar sign to keys
$keys = array_map( function( $item ) { 
    return '$'.$item;
}, array_keys( $values ) );

// create the final array by comining the arrays $keys and $values
$vars = array_combine( $keys, array_values( $values ) );

// relpace names of the variables with values
$text = str_replace( array_keys( $vars ), array_values( $vars ), $text );

// collect all constants and replace user defined constants with values
$constants = get_defined_constants( true );
$text = str_replace( array_keys( $constants['user'] ), array_values( $constants['user'] ), $text );

// we are done
echo $text;