我想在yii框架应用程序中找到另一个应用程序的url。怎么做?
我可以在我自己的应用程序中这样做:
module.exports = function(grunt) {
// Load Grunt tasks declared in the package.json file
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);
// Configure Grunt
grunt.initConfig({
// Grunt express - our webserver
// https://github.com/blai/grunt-express
express: {
all: {
options: {
bases: ['var\\www\\megapolis'],
port: 8080,
hostname: "localhost",
livereload: true
}
}
},
// grunt-watch will monitor the projects files
// https://github.com/gruntjs/grunt-contrib-watch
watch: {
all: {
files: '**/*.html',
options: {
livereload: true
}
}
},
// grunt-open will open your browser at the project's URL
// https://www.npmjs.org/package/grunt-open
open: {
all: {
path: 'http://localhost/megapolis/index.html'
}
}
});
// Creates the `server` task
grunt.registerTask('server', [
'express',
'open',
'watch'
]);
};
但是我想通过应用程序在外面打一些网址。怎么做?
答案 0 :(得分:1)
如果您只想点击网址,为什么不使用超级简单file_get_contents()
?
<?php file_get_contents('http://www.example.com'); ?>
答案 1 :(得分:0)
你可以使用这个
CHtml::link( CHtml::image(Yii::app()->request->baseUrl . '/images/android.png'),('http://www.google.com'), array('class'=>" "));