我有一个文本框值 我必须在textvalue中找出%符号 谁能建议我怎么做?
我有一个包含一些值的文本框,我必须找出该文本框是否包含%符号
$camp_ttllimpression=$_POST['camp_ttllimpression'];
$camp_ttllclicks=$_POST['camp_ttllclicks'];
$camp_ttlleads=$_POST['camp_ttlleads'];
$camp_ttllsales=$_POST['camp_ttllsales'];
$hid=$_POST['hid'];
$camp_cpa_amnt=$_POST['camp_cpa_amnt'];
$camp_cpm_amnt=$_POST['camp_cpm_amnt'];
$camp_cpc_amnt=$_POST['camp_cpc_amnt'];
$camp_cpl_amnt=$_POST['camp_cpl_amnt'];
$camp_cpm_budgt=($camp_ttllimpression * $camp_cpm_amnt)/1000;
$camp_cpc_budgt=$camp_ttllclicks * $camp_cpc_amnt;
$camp_cpl_budgt=$camp_ttlleads * $camp_cpl_amnt;
$camp_cpa_budgt=$camp_ttllsales * $camp_cpa_amnt;
if($hid=="%") { echo Open;} else { echo $camp_cpa_budgt;}
答案 0 :(得分:1)
替换$_POST['textfield']
的正确密钥,因为您的问题不明确。不需要preg_match()
- 使用简单的字符串操作可以做得更好。
// To find out if it contains a % anywhere...
if (strpos($_POST['texfield'], '%') !== FALSE) {
// Contais a %
}
// To find out if it contains only a %
if ($_POST['texfield'] === '%') {
// Contains only %
}
答案 1 :(得分:1)
我没有完整地提出你的问题,但希望你想要这样的东西, 使用strpos
if(strpos($hid,"%") !== false )