Господа подскажите, есть код
$input = $node->field_price;
if ($input > 10000) {
include("include/q.php");
в $input залетае число с разделителем тысяч, вида 15 000 и if не отрабатывает, пытвлся сделать так
$input = $node->field_price;
$n_str = str_replace(" ","",$input);
if ($n_str > 10000) {
include("include/q.php");
но не помогает
$input = preg_replace("/[^0-9]/", "", $node->field_price);