summaryrefslogtreecommitdiffstats
path: root/bindings/php5/examples
diff options
context:
space:
mode:
authorFrederic Peters <fpeters@entrouvert.com>2008-04-29 12:06:25 +0000
committerFrederic Peters <fpeters@entrouvert.com>2008-04-29 12:06:25 +0000
commit34e4fd0b5aae872344a16267efac847f45108ca7 (patch)
tree904ed6027947636f41f52c6a04ae33507509711e /bindings/php5/examples
parent073b0504389253893c636f40047eb4e0531cec34 (diff)
downloadlasso-34e4fd0b5aae872344a16267efac847f45108ca7.tar.gz
lasso-34e4fd0b5aae872344a16267efac847f45108ca7.tar.xz
lasso-34e4fd0b5aae872344a16267efac847f45108ca7.zip
[project @ fpeters@0d.be-20080118215410-d45drghkhvba7822]
merged Damien branch; and fixed PHP5 binding to use GLib memory management functions Original author: Frederic Peters <fpeters@0d.be> Date: 2008-01-18 22:54:10.239000+01:00
Diffstat (limited to 'bindings/php5/examples')
-rw-r--r--bindings/php5/examples/get_attributes_from_assertion.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/bindings/php5/examples/get_attributes_from_assertion.php b/bindings/php5/examples/get_attributes_from_assertion.php
new file mode 100644
index 00000000..3ac48159
--- /dev/null
+++ b/bindings/php5/examples/get_attributes_from_assertion.php
@@ -0,0 +1,11 @@
+/* Example SP PHP5 code to get attributes from an assertion */
+
+foreach ($assertion->attributeStatement[0]->attribute as $attribute) {
+ if ($attribute->name == LASSO_SAML2_ATTRIBUTE_NAME_EPR) {
+ continue;
+ }
+ echo 'attribute : ' . $attribute->name . "\n";
+ foreach ($attribute->attributeValue as $value) {
+ echo ' value : ' . $value->any[0]->content . "\n";
+ }
+}