Skip to content

Commit

Permalink
updated to version 1.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
josantonius committed May 4, 2018
1 parent 45f76e1 commit 08b09ad
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 18 deletions.
20 changes: 11 additions & 9 deletions README-ES.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ Ejemplo de uso para esta biblioteca:
### - Establecer prefijo para sesiones:

```php
Session::set('name', 'Joseph');
Session::setPrefix('_prefix');
```

### - Obtener prefijo de las sesiones:
Expand All @@ -191,10 +191,16 @@ Session::getPrefix();
Session::init();
```

### - Iniciar sesión estableciendo el tiempo de duración de la sessión:

```php
Session::init(3600);
```

### - Añadir valor a una sesión:

```php
Session::init();
Session::set('name', 'Joseph');
```

### - Agregar valor múltiple a las sesiones:
Expand Down Expand Up @@ -314,13 +320,9 @@ Si deseas colaborar, puedes echar un vistazo a la lista de

**¡Gracias a quienes ya habéis contribuido a este proyecto!**

[<img alt="peter279k" src="https://avatars2.githubusercontent.com/u/9021747?v=4&s=117" height="117" width="117">](https://github.com/peter279k) |
:---:|
[peter279k](https://github.com/peter279k)|

[<img alt="chrisrowley14" src="https://avatars1.githubusercontent.com/u/12914881?s=117&v=4" height="117" width="117">](https://github.com/chrisrowley14) |
:---:|
[chrisrowley14](https://github.com/chrisrowley14)|
[<img alt="peter279k" src="https://avatars2.githubusercontent.com/u/9021747?v=4&s=117" height="117" width="117">](https://github.com/peter279k) | [<img alt="chrisrowley14" src="https://avatars1.githubusercontent.com/u/12914881?s=117&v=4" height="117" width="117">](https://github.com/chrisrowley14) |
:---: | :---: |
[peter279k](https://github.com/peter279k) | [chrisrowley14](https://github.com/chrisrowley14)|

## Repositorio

Expand Down
20 changes: 11 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ Example of use for this library:
### - Set prefix for sessions:

```php
Session::set('name', 'Joseph');
Session::setPrefix('_prefix');
```

### - Get sessions prefix:
Expand All @@ -191,10 +191,16 @@ Session::getPrefix();
Session::init();
```

### - Start session by setting the session duration:

```php
Session::init(3600);
```

### - Add value to a session:

```php
Session::init();
Session::set('name', 'Joseph');
```

### - Add multiple value to sessions:
Expand Down Expand Up @@ -314,13 +320,9 @@ If you would like to help, please take a look at the list of

**Thank you to all the people who already contributed to this project!**

[<img alt="peter279k" src="https://avatars2.githubusercontent.com/u/9021747?v=4&s=117" height="117" width="117">](https://github.com/peter279k) |
:---:|
[peter279k](https://github.com/peter279k)|

[<img alt="chrisrowley14" src="https://avatars1.githubusercontent.com/u/12914881?s=117&v=4" height="117" width="117">](https://github.com/chrisrowley14) |
:---:|
[chrisrowley14](https://github.com/chrisrowley14)|
[<img alt="peter279k" src="https://avatars2.githubusercontent.com/u/9021747?v=4&s=117" height="117" width="117">](https://github.com/peter279k) | [<img alt="chrisrowley14" src="https://avatars1.githubusercontent.com/u/12914881?s=117&v=4" height="117" width="117">](https://github.com/chrisrowley14) |
:---: | :---: |
[peter279k](https://github.com/peter279k) | [chrisrowley14](https://github.com/chrisrowley14)|

## Repository

Expand Down

0 comments on commit 08b09ad

Please sign in to comment.