我在下面的代码中得到了一个关于"$ key => $ value"的问题...我在google中查找了它但没有返回任何结果..我所知道的是"=>"用于数组比如x = array('a'=>'b').
function _stripslashes_rcurs($variable,$top = true)
{
$clean_data = array();
foreach($variable as $key => $value)
{
$key = ($top) ? $key : stripslashes($key);
$clean_data[$key] = (is_aray($value)) ?
stripslashes_rcurs($value, false) : stripslashes($value);
}
return $clean_data;
}
Run Code Online (Sandbox Code Playgroud)
谢谢您的帮助
我知道有很多博客平台(Wordpress,Drupal等)但我想从头开始使用python作为学习工具制作我自己的博客引擎或博客平台.使用Google App Engine的想法解决了托管问题.博客相对消耗较少的磁盘空间,如果它可以扩展,那么迁移和其他与此相关的事情都没有问题.我选择web2py作为框架,因为我不需要调整框架,以便它可以与Google App Engine一起使用.
您认为在使用GAE的数据存储时我必须面对的问题是什么?如果我使用RDBMS而不是Google App Engine会更好吗?如果我使用谷歌应用程序引擎,PROS和CONS是什么?