Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

output_reset_rewrite_vars(3) [php man page]

OUTPUT_RESET_REWRITE_VARS(3)						 1					      OUTPUT_RESET_REWRITE_VARS(3)

output_reset_rewrite_vars - Reset URL rewriter values

SYNOPSIS
bool output_reset_rewrite_vars (void ) DESCRIPTION
This function resets the URL rewriter and removes all rewrite variables previously set by the output_add_rewrite_var(3) function or the session mechanism (if session.use_trans_sid was set on session_start(3)). RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 output_reset_rewrite_vars(3) example <?php session_start(); output_add_rewrite_var('var', 'value'); echo '<a href="file.php">link</a>'; ob_flush(); output_reset_rewrite_vars(); echo '<a href="file.php">link</a>'; ?> The above example will output: <a href="file.php?PHPSESSID=xxx&var=value">link</a> <a href="file.php">link</a> SEE ALSO
output_add_rewrite_var(3), ob_flush(3), ob_list_handlers(3), session_start(3). PHP Documentation Group OUTPUT_RESET_REWRITE_VARS(3)

Check Out this Related Man Page

SESSION_DESTROY(3)							 1							SESSION_DESTROY(3)

session_destroy - Destroys all data registered to a session

SYNOPSIS
bool session_destroy (void ) DESCRIPTION
session_destroy(3) destroys all of the data associated with the current session. It does not unset any of the global variables associated with the session, or unset the session cookie. To use the session variables again, session_start(3) has to be called. In order to kill the session altogether, like to log the user out, the session id must also be unset. If a cookie is used to propagate the session id (default behavior), then the session cookie must be deleted. setcookie(3) may be used for that. RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 Destroying a session with $_SESSION <?php // Initialize the session. // If you are using session_name("something"), don't forget it now! session_start(); // Unset all of the session variables. $_SESSION = array(); // If it's desired to kill the session, also delete the session cookie. // Note: This will destroy the session, and not just the session data! if (ini_get("session.use_cookies")) { $params = session_get_cookie_params(); setcookie(session_name(), '', time() - 42000, $params["path"], $params["domain"], $params["secure"], $params["httponly"] ); } // Finally, destroy the session. session_destroy(); ?> NOTES
Note Only use session_unset(3) for older deprecated code that does not use $_SESSION. SEE ALSO
unset(3), setcookie(3). PHP Documentation Group SESSION_DESTROY(3)
Man Page

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

A very quick question

Just a super quick question: how do you put a link in your php code. I want to make a link to something in /tmp directory. i.e. how do you put a href into php, I think it's done a bit differently. thanks john (1 Reply)
Discussion started by: jmg5
1 Replies

2. News, Links, Events and Announcements

SCO claims

So anyone got a idea? Whats up with all this? Cut and past this link --- http://osaia.org/modules.php?name=Content&pa=showpage&pid=13 (4 Replies)
Discussion started by: dancar
4 Replies

3. Shell Programming and Scripting

session limit in php

Sirs, How can i set the session.gc_maxlifetime value by php coding. Thanks ArunKumar (4 Replies)
Discussion started by: arunkumar_mca
4 Replies

4. UNIX for Dummies Questions & Answers

Php

my friend has just made a website which lets you view pages with URL like page=blah.php and stuff, iv tried to explain to him that it's bad becuase people could do page=/etc/passwd but he said he used a shadow file so is np is there anyway this still could be exploited or is he right? (1 Reply)
Discussion started by: ErNci
1 Replies

5. Web Development

Passing values in PHP using POST

Lets say that I have a URL that consists of: myserver/something1.php My second URL is myserver/something2.php I have a variable called $var inside something1.php and once I submit the website the $var changes. Now when I do this I want to send this value using POST to something2.php and echo... (1 Reply)
Discussion started by: puttster
1 Replies

6. Shell Programming and Scripting

Help with Permission Denied on script with sed

I am trying to develop a script to replace a lowercase URLs with an upper case URLs in HTM files. Basically.. replace href="somelowercaseurl" with href="SOMEUPPERCASEURL". In place. the href's are not located in any specific position in the file. Here is my shell script : export... (5 Replies)
Discussion started by: smarty
5 Replies

7. Shell Programming and Scripting

Request to check run php in Unix shell

Hi I m running a php file in Unix shell it says php cpmmnad not found bash-3.2$ cat echo.php <? php echo"heelo world" >? bash-3.2$ php echo.php bash: php: command not found actually I want to change certain thing a in a website using php script so I m beginner and trying... (6 Replies)
Discussion started by: manigrover
6 Replies

8. Web Development

Basic php help

So I want to hide or display a html button based on a mysql data value. The button has a link to a specific page to update a record, I can do both but can't combine the code :confused: Show/hide button: <?php if($row_spec_rx == 1) { echo "locked"; } else { echo "button goes here"; }... (5 Replies)
Discussion started by: barrydocks
5 Replies

9. UNIX for Beginners Questions & Answers

Simple for those who know.

Hi, In Php I can use exec() to access the shell from my .php web page. Tested and it works. So, I need to create a cron job that visits my URL at the time contained in my $time php variable. That's it, just one visit to the specific URL. Once the visit takes place, delete the cron job using... (4 Replies)
Discussion started by: jwest100
4 Replies