答案 0 :(得分:1)
标准的ruby二进制文件可以做到这一点
if (!empty($_POST['comment']))
{
$id=$_GET['id'];
$comment=$_POST['comment'];
$query="UPDATE contacts SET opp=1, SET inforecall='$comment' WHERE contact_id='$id'";
mysql_query($query);
}
ruby -c your_ruby_file.rb
对于此文件
% ruby -c test.rb
test.rb:8: syntax error, unexpected keyword_end, expecting end-of-input