You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param array $props associative array of properties to set on the profile
33
34
* @param string|null $ip the ip address of the client (used for geo-location)
34
35
* @param boolean $ignore_time If the $ignore_time property is true, Mixpanel will not automatically update the "Last Seen" property of the profile. Otherwise, Mixpanel will add a "Last Seen" property associated with the current time
36
+
* @param boolean $ignore_alias If the $ignore_alias property is true, an alias look up will not be performed after ingestion. Otherwise, a lookup for the distinct ID will be performed, and replaced if a match is found
@@ -45,9 +47,10 @@ public function set($distinct_id, $props, $ip = null, $ignore_time = false) {
45
47
* @param array $props associative array of properties to set on the profile
46
48
* @param string|null $ip the ip address of the client (used for geo-location)
47
49
* @param boolean $ignore_time If the $ignore_time property is true, Mixpanel will not automatically update the "Last Seen" property of the profile. Otherwise, Mixpanel will add a "Last Seen" property associated with the current time
50
+
* @param boolean $ignore_alias If the $ignore_alias property is true, an alias look up will not be performed after ingestion. Otherwise, a lookup for the distinct ID will be performed, and replaced if a match is found
@@ -59,9 +62,10 @@ public function setOnce($distinct_id, $props, $ip = null, $ignore_time = false)
59
62
* @param array $props associative array of properties to unset on the profile
60
63
* @param string|null $ip the ip address of the client (used for geo-location)
61
64
* @param boolean $ignore_time If the $ignore_time property is true, Mixpanel will not automatically update the "Last Seen" property of the profile. Otherwise, Mixpanel will add a "Last Seen" property associated with the current time
65
+
* @param boolean $ignore_alias If the $ignore_alias property is true, an alias look up will not be performed after ingestion. Otherwise, a lookup for the distinct ID will be performed, and replaced if a match is found
@@ -73,9 +77,10 @@ public function remove($distinct_id, $props, $ip = null, $ignore_time = false) {
73
77
* @param int $val the amount to increment the property by
74
78
* @param string|null $ip the ip address of the client (used for geo-location)
75
79
* @param boolean $ignore_time If the $ignore_time property is true, Mixpanel will not automatically update the "Last Seen" property of the profile. Otherwise, Mixpanel will add a "Last Seen" property associated with the current time
80
+
* @param boolean $ignore_alias If the $ignore_alias property is true, an alias look up will not be performed after ingestion. Otherwise, a lookup for the distinct ID will be performed, and replaced if a match is found
@@ -87,10 +92,11 @@ public function increment($distinct_id, $prop, $val, $ip = null, $ignore_time =
87
92
* @param string|array $val items to add to the list
88
93
* @param string|null $ip the ip address of the client (used for geo-location)
89
94
* @param boolean $ignore_time If the $ignore_time property is true, Mixpanel will not automatically update the "Last Seen" property of the profile. Otherwise, Mixpanel will add a "Last Seen" property associated with the current time
95
+
* @param boolean $ignore_alias If the $ignore_alias property is true, an alias look up will not be performed after ingestion. Otherwise, a lookup for the distinct ID will be performed, and replaced if a match is found
@@ -101,16 +107,17 @@ public function append($distinct_id, $prop, $val, $ip = null, $ignore_time = fal
101
107
* @param null $timestamp the timestamp of when the transaction occurred (default to current timestamp)
102
108
* @param string|null $ip the ip address of the client (used for geo-location)
103
109
* @param boolean $ignore_time If the $ignore_time property is true, Mixpanel will not automatically update the "Last Seen" property of the profile. Otherwise, Mixpanel will add a "Last Seen" property associated with the current time
110
+
* @param boolean $ignore_alias If the $ignore_alias property is true, an alias look up will not be performed after ingestion. Otherwise, a lookup for the distinct ID will be performed, and replaced if a match is found
@@ -119,9 +126,10 @@ public function trackCharge($distinct_id, $amount, $timestamp = null, $ip = null
119
126
* @param string|int $distinct_id the distinct_id or alias of a user
120
127
* @param string|null $ip the ip address of the client (used for geo-location)
121
128
* @param boolean $ignore_time If the $ignore_time property is true, Mixpanel will not automatically update the "Last Seen" property of the profile. Otherwise, Mixpanel will add a "Last Seen" property associated with the current time
129
+
* @param boolean $ignore_alias If the $ignore_alias property is true, an alias look up will not be performed after ingestion. Otherwise, a lookup for the distinct ID will be performed, and replaced if a match is found
@@ -130,9 +138,10 @@ public function clearCharges($distinct_id, $ip = null, $ignore_time = false) {
130
138
* @param string|int $distinct_id the distinct_id or alias of a user
131
139
* @param string|null $ip the ip address of the client (used for geo-location)
132
140
* @param boolean $ignore_time If the $ignore_time property is true, Mixpanel will not automatically update the "Last Seen" property of the profile. Otherwise, Mixpanel will add a "Last Seen" property associated with the current time
141
+
* @param boolean $ignore_alias If the $ignore_alias property is true, an alias look up will not be performed after ingestion. Otherwise, a lookup for the distinct ID will be performed, and replaced if a match is found
0 commit comments