gpt4 book ai didi

php - 让 CodeIgniter HelloWorld 示例工作

转载 作者:可可西里 更新时间:2023-11-01 13:36:50 25 4
gpt4 key购买 nike

伙计们,我是 igniter 代码的新手。我不明白如何使用这个框架。它只是打开用户指南。谁能告诉我在 code igniter 上执行“hello world”程序需要遵循的步骤?

最佳答案

在您的 system/application/controllers 文件夹中创建一个名为 hello.php 的文件。在文件中,放入以下代码:

<?php
class Hello extends Controller
{
function index()
{
echo 'Hello world!';
}
}
?>

然后转到 http://localhost/codeigniter/index.php/hello ,您应该会看到 hello world。 (您可能将其放在与 codeigniter 不同的目录中,因此请根据需要更改 url)。

然后您可以将代码更改为:

<?php
class Hello extends Controller
{
function index()
{
echo 'Hello world!';
}

function test()
{
echo 'Second hello world!';
}
}
?>

然后转到 http://localhost/codeigniter/index.php/hello/test 将运行类中的“测试”函数。

使用 .htaccess 和 mod_rewrite 你可以从你的 url 中删除 'index.php',所以你只会访问 http://localhost/codeigniter/hellohttp://localhost/codeigniter/hello/test.

关于php - 让 CodeIgniter HelloWorld 示例工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/574334/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com