我在SQL查询中遇到问题,需要一些帮助。
我是Php和sql的新手。因此,将不胜感激。
我有以下Sql查询并尝试。
VALUES('1','123','abc','xyz','abc@hotmail.com','2018-10-12 00:00:02','2018-10-12 00:00:02','NULL')
所以在这里,我想在以下位置将“ NULL”替换为NULL-
var marker = new google.maps.Marker({
position: {
lat: eventArray[0].Latitude,
lng: eventArray[0].Longitude
},
map: scope.map,
label: {
fontFamily: 'Fontawesome',
text: '\uf041',
color: '#008489' // this colors the text inside the label, not the marker color
},
});
答案 0 :(得分:5)
只需将str_replace函数中的第二个参数更改为以下行即可。
`$str = "abc = 'NULL'";
$a = str_replace("'NULL'", 'NULL', $str);
echo ($a);`
第二个参数带有''引号。
答案 1 :(得分:4)
您需要在第二行更改str_replace()函数。
应如下所示。
.log
希望有道理