$customer_id = "{{customer.id}}";
我使用上述声明从shopify获得了客户ID。当我使用echo打印它时,显示123456789012。 但是当我var_dump时,它显示了字符串(15)“ 123456789012”。
当我在条件中使用它时,例如,给我不同的结果
if($customer_id == '123456789012'){
echo "true";
}else{
echo "false";
}
输出: 错误
但我想要真实。