<?php
// check for minimum PHP version
if (version_compare(PHP_VERSION, '5.3.7', '<')) {
exit('Sorry, this script does not run on a PHP version smaller than 5.3.7 !');
} else if (version_compare(PHP_VERSION, '5.5.0', '<')) {
// if you are using PHP 5.
我正在写我的第一个rails网站,遇到了一个问题。我想用‘维基引用’创业板()在欢迎页面上显示“当天的报价”。我把它写在下面的代码中,认为它会起作用,但我错了。浏览器没有说有任何错误,但也没有显示任何错误。有什么想法吗?我这样做完全不对吗?
在welcome_controller.rb中
class WelcomeController < ApplicationController
def index
end
def get_qod
@qod = WikiQuote.get
end
end
在welcome/index.html.erb中
<h3