mirror of
https://github.com/pcsc-for-php/pcsc.git
synced 2026-08-10 22:02:46 +02:00
Content update
This commit is contained in:
parent
d76a0296ec
commit
23bc4ea3e4
1 changed files with 22 additions and 1 deletions
23
README.md
23
README.md
|
|
@ -87,7 +87,28 @@ Returns the response $apdu as string or FALSE.
|
||||||
|
|
||||||
### scard_status($connection);
|
### scard_status($connection);
|
||||||
|
|
||||||
Returns the status or FALSE.
|
Returns the status array or FALSE.
|
||||||
|
|
||||||
|
#### Example:
|
||||||
|
|
||||||
|
```
|
||||||
|
array(7) {
|
||||||
|
["state"]=>
|
||||||
|
int(52)
|
||||||
|
["SCARD_PRESENT"]=>
|
||||||
|
int(1)
|
||||||
|
["SCARD_POWERED"]=>
|
||||||
|
int(1)
|
||||||
|
["SCARD_NEGOTIABLE"]=>
|
||||||
|
int(1)
|
||||||
|
["SCARD_PROTOCOL_T0"]=>
|
||||||
|
int(1)
|
||||||
|
["PROTOCOL"]=>
|
||||||
|
string(3) "T=1"
|
||||||
|
["ATR"]=>
|
||||||
|
string(28) "3B8980014A434F5033315632324A"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
### scard_cancel($context);
|
### scard_cancel($context);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue