mirror of
https://github.com/php/doc-base.git
synced 2026-03-24 23:32:15 +01:00
function lookup support. Now, an IDE can be configured to show a page for a function lookup in the form: mk:@MSITStore:D:\phpcvs\phpdoc\htmlhelp\release\php_manual_en.chm::/_function.html#mysql_connect and the mysql_connect function page will appear... git-svn-id: https://svn.php.net/repository/phpdoc/doc-base/trunk@109082 c90b9560-bf6c-de11-be94-00142212c4b1
21 lines
582 B
HTML
21 lines
582 B
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
|
|
<html>
|
|
<head>
|
|
<title>Function Redirect</title>
|
|
<script language="JavaScript" type="text/javascript">
|
|
function loadPage()
|
|
{
|
|
if (location.hash.length > 0) {
|
|
funcname = location.hash.substr(1);
|
|
funcpage = "function." + funcname.replace(/_/g, "-") + ".html";
|
|
path = location.href.substring(0, location.href.lastIndexOf("/"));
|
|
location.replace(path + '/' + funcpage);
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="loadPage();">
|
|
</body>
|
|
</html>
|