PHPScript için ajax null değerleri geçen

1 Cevap php

Ben null değerleri ile bazı sorunlar yaşıyorum

Onlar aynı yorumlanır şekilde js gelen null değerleri geçen iyi bir yolu var mı.

Bu görünüşte aynı değildir

ajaxNullVar = null;
post_var = {'action': 'update_foto','fotoid': fotoid, 'ajaxNullVar': ajaxNullVar };
        $.ajax({
            url: post_url,
            data: post_var, 

php

if ($_POST['ajaxNullVar']!=NULL)$ajaxNullVar='php null is not the same as a js null';
alert($ajaxNullVar);

I tested for a while now, and setting the null values php, does not cause a problem when posting to the api, but coming from ajax it does?? Before I start thinking about a workaround, I thought I ask here first.

teşekkürler, Richard

1 Cevap

Bu parametreyi geçemiyor sonra ben php boş olarak okumak düşünüyorum. Ben aşağıdaki temel test yaptık:

<?php
if($_GET['a'] == null){
   echo('null');
} else{
   echo('not null');
}
?>