Ⅰ 請問這段PHP代碼是如何加密的 <PHP $codelock_enc="system.
可以用md5(「你所要加密的字元串」)加密得到
Ⅱ file文件ajaxphp怎麼獲取
給你個例子,php裡面寫的,
//朋友圈ajax
$(function(){
$('.friends').click(function(){ //觸發事件
var url = $(this).attr('url'); //獲取提交地址,也可以寫死
var a = $(this); //定義一個當前對象
var nums = parseInt($(this).html()); //獲取當前數量
$.ajax({
type:"GET", //提交方式為get
url:url+'&site=single', //url地址,拼接上我自己需要的參數了
//data:, //為get不用寫,為post需要填寫,參數形式a=11&b=22
success:function(status){ //status為返回的信息,我這里返回狀態位,方便我進行處理
if(status==1){
alert('贈送成功!')
nums = nums +1;
a.html(nums);
}else if(status==0){
alert('您24小時內已經送過了!');
}else{
alert('您沒有贈送資格!請先注冊為奧菲斯會員!');
}
}
})
})
})
type為get的話,參數寫在url里,
為post的話,寫在data里
上傳的文件你print_r($_FILES);
Ⅲ linux下有什麼php開發軟體
PHPeclipse這個插件包括的功能有:PHP語法分析,調試,代碼格式化,大綱視圖,代碼模板定製等。如果平時要同時版做一些權java和php的Web應用,就需要使用Eclipse,可以安裝PHPeclipse和MyEclipse,這樣Eclipse就可以同時開發ajax,php,jsp程序了。安裝Apache,Tomcat及php、Mysql和Eclipse插件(Eclipse + MyEclipse + Phpeclipse)
PHPEclipse IDE built as an Eclipse plug-in. It takes advantage of a robust and widely used application framework. Wiki documentation and IRC support available.
關於phpeclipse
PHPEclipse 是一個 Eclipse插件,它為 PHP 開發人員提供一個集成的開發環境.