Windows VistaでXAMPPを使用しています。私の開発では、私が持っていhttp://127.0.0.1/test_website/
ます。
http://127.0.0.1/test_website/
PHP を使用するにはどうすればよいですか?
私はこのようなものを試しましたが、どれもうまくいきませんでした。
echo dirname(__FILE__)
or
echo basename(__FILE__);
etc.
Windows VistaでXAMPPを使用しています。私の開発では、私が持っていhttp://127.0.0.1/test_website/
ます。
http://127.0.0.1/test_website/
PHP を使用するにはどうすればよいですか?
私はこのようなものを試しましたが、どれもうまくいきませんでした。
echo dirname(__FILE__)
or
echo basename(__FILE__);
etc.
回答:
これを試して:
<?php echo "http://" . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI']; ?>
$_SERVER
定義済み変数の詳細をご覧ください。
httpsの使用を計画している場合は、これを使用できます。
function url(){
return sprintf(
"%s://%s%s",
isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off' ? 'https' : 'http',
$_SERVER['SERVER_NAME'],
$_SERVER['REQUEST_URI']
);
}
echo url();
#=> http://127.0.0.1/foo
パーこの答え、あなたが安全に依存することができるように適切にApacheを設定することを確認してくださいSERVER_NAME
。
<VirtualHost *>
ServerName example.com
UseCanonicalName on
</VirtualHost>
注:HTTP_HOST
キー(ユーザー入力を含む)に依存している場合でも、いくつかのクリーンアップを行い、スペース、コンマ、キャリッジリターンなどを削除する必要があります。ドメインで有効な文字ではないもの。例については、PHP組み込みparse_url関数を確認してください。
$_SERVER['HTTPS']
して入れ替えるべきです。https://
http://
REQUEST_URI
すでにが含まれていることを再確認しました/
。します。@swarnenduは他の人の回答を編集するときはもっと注意してください。代わりにそれはコメントでした。
警告なしで実行するように調整された関数:
function url(){
if(isset($_SERVER['HTTPS'])){
$protocol = ($_SERVER['HTTPS'] && $_SERVER['HTTPS'] != "off") ? "https" : "http";
}
else{
$protocol = 'http';
}
return $protocol . "://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
}
楽しい 'base_url'スニペット!
if (!function_exists('base_url')) {
function base_url($atRoot=FALSE, $atCore=FALSE, $parse=FALSE){
if (isset($_SERVER['HTTP_HOST'])) {
$http = isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) !== 'off' ? 'https' : 'http';
$hostname = $_SERVER['HTTP_HOST'];
$dir = str_replace(basename($_SERVER['SCRIPT_NAME']), '', $_SERVER['SCRIPT_NAME']);
$core = preg_split('@/@', str_replace($_SERVER['DOCUMENT_ROOT'], '', realpath(dirname(__FILE__))), NULL, PREG_SPLIT_NO_EMPTY);
$core = $core[0];
$tmplt = $atRoot ? ($atCore ? "%s://%s/%s/" : "%s://%s/") : ($atCore ? "%s://%s/%s/" : "%s://%s%s");
$end = $atRoot ? ($atCore ? $core : $hostname) : ($atCore ? $core : $dir);
$base_url = sprintf( $tmplt, $http, $hostname, $end );
}
else $base_url = 'http://localhost/';
if ($parse) {
$base_url = parse_url($base_url);
if (isset($base_url['path'])) if ($base_url['path'] == '/') $base_url['path'] = '';
}
return $base_url;
}
}
次のように簡単に使用してください:
// url like: http://stackoverflow.com/questions/2820723/how-to-get-base-url-with-php
echo base_url(); // will produce something like: http://stackoverflow.com/questions/2820723/
echo base_url(TRUE); // will produce something like: http://stackoverflow.com/
echo base_url(TRUE, TRUE); || echo base_url(NULL, TRUE); // will produce something like: http://stackoverflow.com/questions/
// and finally
echo base_url(NULL, NULL, TRUE);
// will produce something like:
// array(3) {
// ["scheme"]=>
// string(4) "http"
// ["host"]=>
// string(12) "stackoverflow.com"
// ["path"]=>
// string(35) "/questions/2820723/"
// }
$base_url="http://".$_SERVER['SERVER_NAME'].dirname($_SERVER["REQUEST_URI"].'?').'/';
使用法:
print "<script src='{$base_url}js/jquery.min.js'/>";
$modifyUrl = parse_url($url);
print_r($modifyUrl)
出力を使用するのは簡単です:
Array
(
[scheme] => http
[host] => aaa.bbb.com
[path] => /
)
https://example.com
からhttps://example.com/category2/page2.html?q=2#lorem-ipsum
、あなたがである現在のページとは何の関係もありません- 。
私が思うに$_SERVER
スーパーグローバルは、あなたが探している情報を持っています。それはこのようなものかもしれません:
echo $_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI']
次のコードを試してください:
$config['base_url'] = ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on") ? "https" : "http");
$config['base_url'] .= "://".$_SERVER['HTTP_HOST'];
$config['base_url'] .= str_replace(basename($_SERVER['SCRIPT_NAME']),"",$_SERVER['SCRIPT_NAME']);
echo $config['base_url'];
次のコードは、プロトコルをチェックする問題を軽減します。$ _SERVER ['APP_URL']はドメイン名とプロトコルを表示します
$ _SERVER ['APP_URL']はprotocol:// domainを返します(例:-http :// localhost)
$ _SERVER ['REQUEST_URI'](/ directory / subdirectory / something / elseなどのURLの残りの部分)
$url = $_SERVER['APP_URL'].$_SERVER['REQUEST_URI'];
出力は次のようになります
http:// localhost / directory / subdirectory / something / else
私はこれをhttp://webcheatsheet.com/php/get_current_page_url.phpで見つけました
次のコードをページに追加します。
<?php
function curPageURL() {
$pageURL = 'http';
if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
$pageURL .= "://";
if ($_SERVER["SERVER_PORT"] != "80") {
$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
} else {
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
}
return $pageURL;
}
?>
次の行を使用して、現在のページのURLを取得できます。
<?php
echo curPageURL();
?>
場合によっては、ページ名のみを取得する必要があります。次の例は、その方法を示しています。
<?php
function curPageName() {
return substr($_SERVER["SCRIPT_NAME"],strrpos($_SERVER["SCRIPT_NAME"],"/")+1);
}
echo "The current page name is ".curPageName();
?>
$http = isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on'? "https://" : "http://";
$url = $http . $_SERVER["SERVER_NAME"] . $_SERVER['REQUEST_URI'];
これを試して。わたしにはできる。
/*url.php file*/
trait URL {
private $url = '';
private $current_url = '';
public $get = '';
function __construct()
{
$this->url = $_SERVER['SERVER_NAME'];
$this->current_url = $_SERVER['REQUEST_URI'];
$clean_server = str_replace('', $this->url, $this->current_url);
$clean_server = explode('/', $clean_server);
$this->get = array('base_url' => "/".$clean_server[1]);
}
}
次のように使用します。
<?php
/*
Test file
Tested for links:
http://localhost/index.php
http://localhost/
http://localhost/index.php/
http://localhost/url/index.php
http://localhost/url/index.php/
http://localhost/url/ab
http://localhost/url/ab/c
*/
require_once 'sys/url.php';
class Home
{
use URL;
}
$h = new Home();
?>
<a href="<?=$h->get['base_url']?>">Base</a>
このようにできますが、申し訳ありませんが私の英語は十分ではありません。
まず、この簡単なコードでホームベースURLを取得します。
このコードをローカルサーバーとパブリックでテストしましたが、結果は良好です。
<?php
function home_base_url(){
// first get http protocol if http or https
$base_url = (isset($_SERVER['HTTPS']) &&
$_SERVER['HTTPS']!='off') ? 'https://' : 'http://';
// get default website root directory
$tmpURL = dirname(__FILE__);
// when use dirname(__FILE__) will return value like this "C:\xampp\htdocs\my_website",
//convert value to http url use string replace,
// replace any backslashes to slash in this case use chr value "92"
$tmpURL = str_replace(chr(92),'/',$tmpURL);
// now replace any same string in $tmpURL value to null or ''
// and will return value like /localhost/my_website/ or just /my_website/
$tmpURL = str_replace($_SERVER['DOCUMENT_ROOT'],'',$tmpURL);
// delete any slash character in first and last of value
$tmpURL = ltrim($tmpURL,'/');
$tmpURL = rtrim($tmpURL, '/');
// check again if we find any slash string in value then we can assume its local machine
if (strpos($tmpURL,'/')){
// explode that value and take only first value
$tmpURL = explode('/',$tmpURL);
$tmpURL = $tmpURL[0];
}
// now last steps
// assign protocol in first value
if ($tmpURL !== $_SERVER['HTTP_HOST'])
// if protocol its http then like this
$base_url .= $_SERVER['HTTP_HOST'].'/'.$tmpURL.'/';
else
// else if protocol is https
$base_url .= $tmpURL.'/';
// give return value
return $base_url;
}
?>
// and test it
echo home_base_url();
出力は次のようになります。
local machine : http://localhost/my_website/ or https://myhost/my_website
public : http://www.my_website.com/ or https://www.my_website.com/
でhome_base_url
関数を使用するindex.php
あなたのウェブサイトの、それを定義します
次に、この関数を使用して、URLを介してスクリプト、CSS、コンテンツを読み込むことができます
<?php
echo '<script type="text/javascript" src="'.home_base_url().'js/script.js"></script>'."\n";
?>
このような出力を作成します:
<script type="text/javascript" src="http://www.my_website.com/js/script.js"></script>
このスクリプトが正常に機能する場合は、!
これは私が一緒に作ったものです。2つの要素を持つ配列を返します。最初の要素は?の前のすべてです。2つ目は、すべてのクエリ文字列変数を連想配列で含む配列です。
function disectURL()
{
$arr = array();
$a = explode('?',sprintf(
"%s://%s%s",
isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off' ? 'https' : 'http',
$_SERVER['SERVER_NAME'],
$_SERVER['REQUEST_URI']
));
$arr['base_url'] = $a[0];
$arr['query_string'] = [];
if(sizeof($a) == 2)
{
$b = explode('&', $a[1]);
$qs = array();
foreach ($b as $c)
{
$d = explode('=', $c);
$qs[$d[0]] = $d[1];
}
$arr['query_string'] = (count($qs)) ? $qs : '';
}
return $arr;
}
注:これは、上記のmačekによって提供された回答の拡張です。(クレジットの期日が到来するクレジット)
@ user3832931の回答で編集され、サーバーポートが含まれています。
' https:// localhost:8000 / folder / 'のようなURLを作成する
$base_url="http://".$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'].dirname($_SERVER["REQUEST_URI"].'?').'/';
function server_url(){
$server ="";
if(isset($_SERVER['SERVER_NAME'])){
$server = sprintf("%s://%s%s", isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off' ? 'https' : 'http', $_SERVER['SERVER_NAME'], '/');
}
else{
$server = sprintf("%s://%s%s", isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off' ? 'https' : 'http', $_SERVER['SERVER_ADDR'], '/');
}
print $server;
}
OPと同じ質問がありましたが、要件が異なる可能性があります。私はこの関数を作成しました...
/**
* Get the base URL of the current page. For example, if the current page URL is
* "https://example.com/dir/example.php?whatever" this function will return
* "https://example.com/dir/" .
*
* @return string The base URL of the current page.
*/
function get_base_url() {
$protocol = filter_input(INPUT_SERVER, 'HTTPS');
if (empty($protocol)) {
$protocol = "http";
}
$host = filter_input(INPUT_SERVER, 'HTTP_HOST');
$request_uri_full = filter_input(INPUT_SERVER, 'REQUEST_URI');
$last_slash_pos = strrpos($request_uri_full, "/");
if ($last_slash_pos === FALSE) {
$request_uri_sub = $request_uri_full;
}
else {
$request_uri_sub = substr($request_uri_full, 0, $last_slash_pos + 1);
}
return $protocol . "://" . $host . $request_uri_sub;
}
...ちなみに、リダイレクトに使用する絶対URLを作成するために使用しています。
テストして結果を取得するだけです。
// output: /myproject/index.php
$currentPath = $_SERVER['PHP_SELF'];
// output: Array ( [dirname] => /myproject [basename] => index.php [extension] => php [filename] => index )
$pathInfo = pathinfo($currentPath);
// output: localhost
$hostName = $_SERVER['HTTP_HOST'];
// output: http://
$protocol = strtolower(substr($_SERVER["SERVER_PROTOCOL"],0,5))=='https://'?'https://':'http://';
// return: http://localhost/myproject/
echo $protocol.$hostName.$pathInfo['dirname']."/";
私の場合RewriteBase
、.htaccess
ファイルに含まれているのと同じようなベースURLが必要でした。
残念ながら、PHPではファイルRewriteBase
から単に取得すること.htaccess
はできません。ただし、.htaccessファイルに環境変数を設定し、その変数をPHPで取得することは可能です。以下のコードを確認してください。
.htaccess
SetEnv BASE_PATH /
index.php
これをテンプレートのベースタグ(ページのヘッドセクション)で使用します。
<base href="<?php echo ! empty( getenv( 'BASE_PATH' ) ) ? getenv( 'BASE_PATH' ) : '/'; ?>"/>
したがって、変数が空でなければ、それを使用します。それ以外の場合は/
、デフォルトのベースパスとしてフォールバックします。
環境に基づいて、ベースURLは常に正しくなります。私は/
ローカルおよびプロダクションWebサイトのベースURLとして使用しています。しかし/foldername/
、ステージング環境では。
.htaccess
RewriteBaseが異なるため、そもそもすべてが独自のものでした。したがって、このソリューションは私にとってはうまくいきます。
$ _SERVER ['REQUEST_URI']を見てください。
$current_url = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
HTTPとHTTPSの両方をサポートする場合は、このソリューションを使用できます
$current_url = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
これでうまくいきました。これもお役に立てば幸いです。この質問をしていただきありがとうございます。