dougai3418 2011-09-20 19:19
浏览 48
已采纳

如何将一个变量从一个php传递给另一个由ajax调用的变量,而不会让前端看到它

I have a php function that's run when a build.php page is loaded and creates a $variable. I have save.php also, which is called via an ajax function in scripts.js (taking data sent through POST), but I need to use $variable in save.php.

Is there a good way to send further data through ajax without it being visible on the front end?

I thought of using a $_SESSION variable for this, which seems like it would work, but I understand it may not be totally reliable and is not always a good idea (though this might have been overstated where I was looking).

Is that the best way? Or is there some other way to get a PHP variable to another one via javascript without it being in the front end code?

  • 写回答

2条回答 默认 最新

  • doufen3786 2011-09-20 19:41
    关注

    Session variables exist only on the server, not on the client. For you to save a session variable that was originated by your javascript function in the browser you will need to pass it to the server somehow. And as you probably realize you don't have much control on what happens on the client side. They can pretty much change any post information you send over to the server - there are some programs that do that fairly easily.

    Even if you use ajax, the client can still mess with your variables.

    You could try to encrypt the information before sending it.

    If in the other hand you want to pass variables between two scripts running on the server you can definitively do that using session variables.

    Update

    It seems that you are creating the variable in your first script and then there is a javascript function that calls the second script and you need the second script to access the variable created by the first script.

    In the above scenario you can definitively use session variables. This is the main reason they exist. To allow you to pass information among different scripts.

    First PHP script

    session_start();
    logic to create the variable
    $_SESSION['myVar'] = $myVar;
    rest of the script
    

    Javascript

    calls second script / does not change the value of the variable
    

    Second PHP script

    session_start();
    $myVar = $_SESSION['myVar'];
    execute second script
    

    I hope this makes sense.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看