php-src/ext/standard/pageinfo.c

126 lines
2.7 KiB
C
Raw Normal View History

/*
+----------------------------------------------------------------------+
1999-07-16 13:13:16 +00:00
| PHP version 4.0 |
+----------------------------------------------------------------------+
2001-02-26 06:11:02 +00:00
| Copyright (c) 1997-2001 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 2.02 of the PHP license, |
1999-07-16 13:13:16 +00:00
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
| http://www.php.net/license/2_02.txt. |
1999-07-16 13:13:16 +00:00
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Jim Winstead <jimw@php.net> |
+----------------------------------------------------------------------+
*/
/* $Id$ */
1999-04-23 20:06:01 +00:00
#include "php.h"
#include "pageinfo.h"
#include "SAPI.h"
#include <stdio.h>
#include <stdlib.h>
#if HAVE_PWD_H
2000-02-11 15:59:30 +00:00
#ifdef PHP_WIN32
#include "win32/pwd.h"
#else
#include <pwd.h>
#endif
#endif
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <sys/stat.h>
2000-02-11 15:59:30 +00:00
#ifdef PHP_WIN32
#include <process.h>
#endif
#include "ext/standard/basic_functions.h"
2000-02-10 18:19:04 +00:00
static void php_statpage(BLS_D)
{
2000-02-10 18:19:04 +00:00
struct stat *pstat;
1999-06-26 23:21:18 +00:00
2000-02-10 18:19:04 +00:00
pstat = sapi_get_stat();
if (BG(page_uid)==-1) {
if(pstat) {
BG(page_uid) = pstat->st_uid;
BG(page_inode) = pstat->st_ino;
BG(page_mtime) = pstat->st_mtime;
}
}
}
1999-12-17 19:51:39 +00:00
long php_getuid(void)
{
BLS_FETCH();
2000-02-10 18:19:04 +00:00
php_statpage(BLS_C);
return (BG(page_uid));
}
/* {{{ proto int getmyuid(void)
Get PHP script owner's UID */
1999-05-16 11:19:26 +00:00
PHP_FUNCTION(getmyuid)
{
long uid;
1999-12-17 19:51:39 +00:00
uid = php_getuid();
if (uid < 0) {
RETURN_FALSE;
} else {
RETURN_LONG(uid);
}
}
/* }}} */
/* {{{ proto int getmypid(void)
Get current process ID */
1999-05-16 11:19:26 +00:00
PHP_FUNCTION(getmypid)
{
int pid;
pid = getpid();
if (pid < 0) {
RETURN_FALSE;
} else {
RETURN_LONG((long) pid);
}
}
/* }}} */
/* {{{ proto int getmyinode(void)
Get the inode of the current script being parsed */
1999-05-16 11:19:26 +00:00
PHP_FUNCTION(getmyinode)
{
BLS_FETCH();
2000-02-10 18:19:04 +00:00
php_statpage(BLS_C);
if (BG(page_inode) < 0) {
RETURN_FALSE;
} else {
RETURN_LONG(BG(page_inode));
}
}
/* }}} */
/* {{{ proto int getlastmod(void)
Get time of last page modification */
1999-05-16 11:19:26 +00:00
PHP_FUNCTION(getlastmod)
{
BLS_FETCH();
2000-02-10 18:19:04 +00:00
php_statpage(BLS_C);
if (BG(page_mtime) < 0) {
RETURN_FALSE;
} else {
RETURN_LONG(BG(page_mtime));
}
}
/* }}} */