|
użytkowników online: 50
|
OPINIE UŻYTKOWNIKÓW
|
Porady zamieszczone tutaj przez Darka są pomocne w wielu chwilach. Wielokrotnie tworząc jakiś złożony serwis korzystam z tych porad. Można by tworzyć samemu te skrypty, ale tak naprawdę czy nie lepiej jest wziąć skrypt z tej strony i zmodyfikowac go dla swoich potrzeb? Wprawdzie możemy taki skrypt napisać sami, ale po co, skoro stracimy czas na coś, co ktoś juz napisał, przetestował i może zagwarantować, że działa poprawnie. Któryś raz z rzędu opłacam abonament i nie raz jeszcze opłacę. Kawał dobrej roboty i ogrom wiedzy w jednym miejscu.
Piotr Karamański Design Studio
|
|
PODRĘCZNIK PHP 5.x, 4.x, 3.x - częściowo spolszczony / źródło: www.php.net
[Spis]
[A]
[B]
[C]
[D]
[E]
[F]
[G]
[H]
[I]
[J]
[K]
[L]
[M]
[N]
[O]
[P]
[Q]
[R]
[S]
[T]
[U]
[V]
[X]
[W]
[Z]
session_name (PHP 4, PHP 5) session_name -- Pobierz i/lub ustaw nazwę bieżącej sesji Opisstring session_name ( [string nazwa] )
session_name() zwraca nazwę bieżącej sesji. Jeśli
podano parametr name, nazwa bieżącej sesji
zostanie zmieniona na tą wartość.
Nazwa sesji jest używana w identyfikatorze sesji w ciasteczkach i URLach.
Powinna zawierać tylko znaki alfanumeryczne; powinna być krótka i
treściwa (np. dla użytkowników z włączonymi ostrzeżeniami o
ciasteczkach). Nazwa sesji jest przywracana do domyślnej wartości
określonej w session.name na początku wywołania
strony, a więc musisz wywołać session_name() dla
każdej strony (przed wywołaniem w niej session_start()
i session_register()).
Przykład 1. Przykłady session_name() |
<?php
$poprzednia_nazwa = session_name ("WebsiteID");
echo "Poprzednią nazwą sesji było $poprzednia_nazwa<br />";
?>
|
|
Zobacz także opis dyrektywy konfiguracji
session.name.
User Contributed NotesJuergen Nantke - info at nantke dot de
10-Aug-2005 05:11
Be carefull not use a dot (.) in the session name.
tjerk dot meesters at gmail dot com
13-Jul-2005 12:32
Another way of preventing a warning being issued, is by using only cookies to propagate a session:
ini_set('session.use_only_cookies',1);
php at REMOVETHIS dot kennel17 dot co dot uk
27-Jun-2005 04:47
In response to codegrunt slave, you could suppress any warnings from being output by using the @ symbol.
<?php
@session_name("(bad name)");
?>
Alternatively, you could use output buffering instead of the @ symbol if you wanted to check whether an error occurred.
<?php
ob_start();
session_name("(bad name)");
$Output = ob_get_contents();
ob_end_clean();
if ($Output != "")
print("Bad session name!");
?>
slave at codegrunt dot com
22-Dec-2004 11:03
One gotcha I have noticed with session_name is that it will trigger a WARNING level error if the cookie or GET/POST variable value has something other than alphanumeric characters in it. If your site displays warnings and uses PHP sessions this may be a way to enumerate at least some of your scripts:
http://example.com/foo.php?session_name_here=(bad)
Warning: session_start(): The session id contains invalid characters, valid characters are only a-z, A-Z and 0-9 in /some/path/foo.php on line 666
I did not see anything in the docs suggesting that one had to sanitize the PHP session ID values before opening the session but that appears to be the case.
Unfortunately session_name() always returns true so you have to actually get to the point of assigning variables values before you know whether you have been passed bad session data (as far as I can see). After the error has been generated in other words.
Cheers
Hongliang Qiang
27-May-2004 10:48
This may sound no-brainer: the session_name() function will have no essential effect if you set session.auto_start to "true" in php.ini . And the obvious explanation is the session already started thus cannot be altered before the session_name() function--wherever it is in the script--is executed, same reason session_name needs to be called before session_start() as documented.
I know it is really not a big deal. But I had a quite hard time before figuring this out, and hope it might be helpful to someone like me.
|