CodeIgniter baseurl不在localhost上工作

时间:2017-04-15 11:13:33

标签: php configuration localhost base-url

我正在尝试在我的应用程序中使用#include<stdio.h> #include<string.h> #include<unistd.h> #include<unistd.h> #include<stdlib.h> int main() { pid_t pid; int fds[2]; int ret; char ch[20]; memset(ch,'\0',20); ret = pipe(fds); if(ret == -1) { perror("pipe failed"); exit(0); } pid = fork(); if (pid == 0) { printf("Child process\n"); write(fds[1],"Hello",5); } if (pid > 0) { printf("Parent Process\n"); read(fds[0],ch,15); printf("%s\n",ch); } } ,但它不起作用。我附上了两张照片herehere。任何人都可以帮我解决这个问题吗?

baseurl()

2 个答案:

答案 0 :(得分:0)

要使用base_url(),您必须先加载URL Helper。这可以在application/config/autoload.php

中完成
$autoload['helper'] = array('url');

或者,手动:

$this->load->helper('url');

加载后,请务必记住base_url()不会隐式打印或回显任何内容,而是返回要打印的值:

echo base_url();

答案 1 :(得分:0)

hiii ...请将baseurl()替换为 base_url()。